aboutsummaryrefslogtreecommitdiff
path: root/connection.el
diff options
context:
space:
mode:
authorSteve Purcell <steve@sanityinc.com>2013-10-05 10:21:30 +0100
committerSteve Purcell <steve@sanityinc.com>2013-10-05 10:21:30 +0100
commit680cbd94f87a27edf43b1843c3b0927bba01d078 (patch)
tree67a00c4c73cdc3f942c060e9a4cee9e496a1b720 /connection.el
parent41f2e0b385ac5f63e6cbda2c8978c291934efc6f (diff)
Place package metadata directly in .el files
In the case of single-file packages like this, a -pkg.el is unnecessary. This commit therefore removes the -pkg.el files and puts the info directly in the .el files. It also, therefore, adjusts the formatting of those files slightly in order to be readable by `package-buffer-info`.
Diffstat (limited to 'connection.el')
-rwxr-xr-xconnection.el8
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