From 680cbd94f87a27edf43b1843c3b0927bba01d078 Mon Sep 17 00:00:00 2001 From: Steve Purcell Date: Sat, 5 Oct 2013 10:21:30 +0100 Subject: 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`. --- connection.el | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'connection.el') 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 ;; 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 -- cgit v1.2.3