diff options
author | myrkr <torsten.hilbrich@gmx.net> | 2013-10-05 05:26:10 -0700 |
---|---|---|
committer | myrkr <torsten.hilbrich@gmx.net> | 2013-10-05 05:26:10 -0700 |
commit | 8135b0ea05b82f7f5d5f51b7fce751b79dd10289 (patch) | |
tree | 67a00c4c73cdc3f942c060e9a4cee9e496a1b720 /connection.el | |
parent | 41f2e0b385ac5f63e6cbda2c8978c291934efc6f (diff) | |
parent | 680cbd94f87a27edf43b1843c3b0927bba01d078 (diff) |
Merge pull request #1 from purcell/packaging
Place package metadata directly in .el files
Diffstat (limited to 'connection.el')
-rwxr-xr-x | connection.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/connection.el b/connection.el index 04cdcf9..85eac27 100755 --- a/connection.el +++ b/connection.el @@ -1,7 +1,8 @@ -;;; connection.el -- handling a tcp based connection +;;; connection.el --- TCP-based client connection ;; Author: Torsten Hilbrich <torsten.hilbrich@gmx.net> ;; Keywords: network +;; Version: 1.10 ;; This file is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by @@ -18,11 +19,15 @@ ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ;; Boston, MA 02111-1307, USA. +;;; Commentary: + ;; connection allows to handle TCP-based connections in client mode ;; where text-based information are exchanged. There is special ;; support for handling CR LF (and the usual CR LF . CR LF ;; terminater). +;;; Code: + (eval-when-compile (require 'cl)) @@ -151,3 +156,4 @@ nil: argument is no connection object (connection-read connection "\015?\012[.]\015?\012")) (provide 'connection) +;;; connection.el ends here |