diff options
| -rw-r--r-- | lisp/tcp.el | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/lisp/tcp.el b/lisp/tcp.el index f9bd6e211a3..094a886e4de 100644 --- a/lisp/tcp.el +++ b/lisp/tcp.el | |||
| @@ -6,20 +6,21 @@ | |||
| 6 | 6 | ||
| 7 | ;; This file is part of GNU Emacs. | 7 | ;; This file is part of GNU Emacs. |
| 8 | 8 | ||
| 9 | ;; GNU Emacs is free software; you can redistribute it and/or modify | ||
| 10 | ;; it under the terms of the GNU General Public License as published by | ||
| 11 | ;; the Free Software Foundation; either version 2, or (at your option) | ||
| 12 | ;; any later version. | ||
| 13 | |||
| 9 | ;; GNU Emacs is distributed in the hope that it will be useful, | 14 | ;; GNU Emacs is distributed in the hope that it will be useful, |
| 10 | ;; but WITHOUT ANY WARRANTY. No author or distributor | 15 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | ;; accepts responsibility to anyone for the consequences of using it | 16 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | ;; or for whether it serves any particular purpose or works at all, | 17 | ;; GNU General Public License for more details. |
| 13 | ;; unless he says so in writing. Refer to the GNU Emacs General Public | 18 | |
| 14 | ;; License for full details. | 19 | ;; You should have received a copy of the GNU General Public License |
| 20 | ;; along with GNU Emacs; see the file COPYING. If not, write to | ||
| 21 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 15 | 22 | ||
| 16 | ;; Everyone is granted permission to copy, modify and redistribute | 23 | ;;; Commentary: |
| 17 | ;; GNU Emacs, but only under the conditions described in the | ||
| 18 | ;; GNU Emacs General Public License. A copy of this license is | ||
| 19 | ;; supposed to have been given to you along with GNU Emacs so you | ||
| 20 | ;; can know your rights and responsibilities. It should be in a | ||
| 21 | ;; file named COPYING. Among other things, the copyright notice | ||
| 22 | ;; and this notice must be preserved on all copies. | ||
| 23 | 24 | ||
| 24 | ;; Notes on TCP package: | 25 | ;; Notes on TCP package: |
| 25 | ;; | 26 | ;; |
| @@ -36,6 +37,8 @@ | |||
| 36 | ;; search path. If you modify `tcp.c', please send diffs to the author | 37 | ;; search path. If you modify `tcp.c', please send diffs to the author |
| 37 | ;; of GNUS. I'll include some of them in the next releases. | 38 | ;; of GNUS. I'll include some of them in the next releases. |
| 38 | 39 | ||
| 40 | ;;; Code: | ||
| 41 | |||
| 39 | (provide 'tcp) | 42 | (provide 'tcp) |
| 40 | 43 | ||
| 41 | (defvar tcp-program-name "tcp" | 44 | (defvar tcp-program-name "tcp" |
| @@ -66,3 +69,5 @@ Fourth arg SERVICE is name of the service desired, or an integer | |||
| 66 | ;; Return process | 69 | ;; Return process |
| 67 | proc | 70 | proc |
| 68 | )) | 71 | )) |
| 72 | |||
| 73 | ;;; tcp.el ends here | ||