diff options
| author | Eric S. Raymond | 1992-07-14 21:51:51 +0000 |
|---|---|---|
| committer | Eric S. Raymond | 1992-07-14 21:51:51 +0000 |
| commit | 22a89ee866d6fd7fe735e28d36d6e5739e6eb434 (patch) | |
| tree | c0a855899d0abbb5c2898e735bc2dfd5364309a6 | |
| parent | 9d7ad1b3591f35aa65d9b224b5a8028b865b9f7e (diff) | |
| download | emacs-22a89ee866d6fd7fe735e28d36d6e5739e6eb434.tar.gz emacs-22a89ee866d6fd7fe735e28d36d6e5739e6eb434.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/tabify.el | 4 | ||||
| -rw-r--r-- | lisp/tar-mode.el | 11 | ||||
| -rw-r--r-- | lisp/telnet.el | 7 | ||||
| -rw-r--r-- | lisp/term-nasty.el | 17 | ||||
| -rw-r--r-- | lisp/textmodes/texnfo-upd.el | 6 | ||||
| -rw-r--r-- | lisp/textmodes/text-mode.el | 4 |
6 files changed, 38 insertions, 11 deletions
diff --git a/lisp/tabify.el b/lisp/tabify.el index 6b8a56f396b..ab28397ab02 100644 --- a/lisp/tabify.el +++ b/lisp/tabify.el | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | ;;; tabify.el --- tab conversion commands for Emacs | 1 | ;;; tabify.el --- tab conversion commands for Emacs |
| 2 | 2 | ||
| 3 | ;; Maintainer: FSF | ||
| 4 | ;; Last-Modified: 9 May 1991 | ||
| 5 | |||
| 3 | ;; Copyright (C) 1985 Free Software Foundation, Inc. | 6 | ;; Copyright (C) 1985 Free Software Foundation, Inc. |
| 4 | 7 | ||
| 5 | ;; This file is part of GNU Emacs. | 8 | ;; This file is part of GNU Emacs. |
| @@ -18,6 +21,7 @@ | |||
| 18 | ;; along with GNU Emacs; see the file COPYING. If not, write to | 21 | ;; along with GNU Emacs; see the file COPYING. If not, write to |
| 19 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | 22 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
| 20 | 23 | ||
| 24 | ;;; Code: | ||
| 21 | 25 | ||
| 22 | ;;;###autoload | 26 | ;;;###autoload |
| 23 | (defun untabify (start end) | 27 | (defun untabify (start end) |
diff --git a/lisp/tar-mode.el b/lisp/tar-mode.el index f1919e238a2..aeeb2515aac 100644 --- a/lisp/tar-mode.el +++ b/lisp/tar-mode.el | |||
| @@ -1,8 +1,9 @@ | |||
| 1 | ;;; tar-mode.el --- simple editing of tar files from GNU emacs | 1 | ;;; tar-mode.el --- simple editing of tar files from GNU emacs |
| 2 | 2 | ||
| 3 | ;;; Author: Jamie Zawinski <jwz@lucid.com> | 3 | ;; Author: Jamie Zawinski <jwz@lucid.com> |
| 4 | ;;; Created: 4 Apr 1990 | 4 | ;; Created: 4 Apr 1990 |
| 5 | ;;; Version: 1.21, 10 Mar 91 | 5 | ;; Version: 1.21 |
| 6 | ;; Last-Modified: 10 Mar 1991 | ||
| 6 | 7 | ||
| 7 | ;;; Copyright (C) 1990, 1991 Free Software Foundation, Inc. | 8 | ;;; Copyright (C) 1990, 1991 Free Software Foundation, Inc. |
| 8 | ;;; | 9 | ;;; |
| @@ -22,6 +23,8 @@ | |||
| 22 | ;;; along with GNU Emacs; see the file COPYING. If not, write to | 23 | ;;; along with GNU Emacs; see the file COPYING. If not, write to |
| 23 | ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | 24 | ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
| 24 | 25 | ||
| 26 | ;;; Commentary: | ||
| 27 | |||
| 25 | ;;; This package attempts to make dealing with Unix 'tar' archives easier. | 28 | ;;; This package attempts to make dealing with Unix 'tar' archives easier. |
| 26 | ;;; When this code is loaded, visiting a file whose name ends in '.tar' will | 29 | ;;; When this code is loaded, visiting a file whose name ends in '.tar' will |
| 27 | ;;; cause the contents of that archive file to be displayed in a Dired-like | 30 | ;;; cause the contents of that archive file to be displayed in a Dired-like |
| @@ -87,6 +90,8 @@ | |||
| 87 | ;;; o Block files, sparse files, continuation files, and the various header | 90 | ;;; o Block files, sparse files, continuation files, and the various header |
| 88 | ;;; types aren't editable. Actually I don't know that they work at all. | 91 | ;;; types aren't editable. Actually I don't know that they work at all. |
| 89 | 92 | ||
| 93 | ;;; Code: | ||
| 94 | |||
| 90 | (defvar tar-anal-blocksize 20 | 95 | (defvar tar-anal-blocksize 20 |
| 91 | "*The blocksize of tar files written by Emacs, or nil, meaning don't care. | 96 | "*The blocksize of tar files written by Emacs, or nil, meaning don't care. |
| 92 | The blocksize of a tar file is not really the size of the blocks; rather, it is | 97 | The blocksize of a tar file is not really the size of the blocks; rather, it is |
diff --git a/lisp/telnet.el b/lisp/telnet.el index ee11af6f63a..18546e99ce3 100644 --- a/lisp/telnet.el +++ b/lisp/telnet.el | |||
| @@ -1,4 +1,9 @@ | |||
| 1 | ;;; telnet.el --- run a telnet session from within an Emacs buffer | 1 | ;;; telnet.el --- run a telnet session from within an Emacs buffer |
| 2 | |||
| 3 | ;; Author: William F. Schelter | ||
| 4 | ;; Maintainer: FSF | ||
| 5 | ;; Last-Modified: 16 Mar 1992 | ||
| 6 | |||
| 2 | ;;; Copyright (C) 1985, 1988, 1992 Free Software Foundation, Inc. | 7 | ;;; Copyright (C) 1985, 1988, 1992 Free Software Foundation, Inc. |
| 3 | 8 | ||
| 4 | ;; This file is part of GNU Emacs. | 9 | ;; This file is part of GNU Emacs. |
| @@ -17,7 +22,7 @@ | |||
| 17 | ;; along with GNU Emacs; see the file COPYING. If not, write to | 22 | ;; along with GNU Emacs; see the file COPYING. If not, write to |
| 18 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | 23 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
| 19 | 24 | ||
| 20 | ;; Author William F. Schelter | 25 | ;;; Code: |
| 21 | 26 | ||
| 22 | ;;to do fix software types for lispm: | 27 | ;;to do fix software types for lispm: |
| 23 | ;;to eval current expression. Also to try to send escape keys correctly. | 28 | ;;to eval current expression. Also to try to send escape keys correctly. |
diff --git a/lisp/term-nasty.el b/lisp/term-nasty.el index 2a0d13acd6b..1ad57f530e1 100644 --- a/lisp/term-nasty.el +++ b/lisp/term-nasty.el | |||
| @@ -1,12 +1,17 @@ | |||
| 1 | ;;; term-nasty.el --- Damned Things from terminfo.el | 1 | ;;; term-nasty.el --- Damned Things from terminfo.el |
| 2 | 2 | ||
| 3 | Some people used to be bothered by the following comments that were | 3 | ;; Maintainer: FSF |
| 4 | found in terminal.el. We decided they were distracting, and that it | ||
| 5 | was better not to have them there. On the other hand, we didn't want | ||
| 6 | to appear to be giving in to the pressure to censor obscenity that | ||
| 7 | currently threatens freedom of speech and of the press in the US. | ||
| 8 | So we decided to put the comments here. | ||
| 9 | 4 | ||
| 5 | ;;; Commentary: | ||
| 6 | |||
| 7 | ;; Some people used to be bothered by the following comments that were | ||
| 8 | ;; found in terminal.el. We decided they were distracting, and that it | ||
| 9 | ;; was better not to have them there. On the other hand, we didn't want | ||
| 10 | ;; to appear to be giving in to the pressure to censor obscenity that | ||
| 11 | ;; currently threatens freedom of speech and of the press in the US. | ||
| 12 | ;; So we decided to put the comments here. | ||
| 13 | |||
| 14 | ;;; Code: | ||
| 10 | 15 | ||
| 11 | These comments were removed from te-losing-unix. | 16 | These comments were removed from te-losing-unix. |
| 12 | ;(what lossage) | 17 | ;(what lossage) |
diff --git a/lisp/textmodes/texnfo-upd.el b/lisp/textmodes/texnfo-upd.el index f089b090bb0..a0902806d75 100644 --- a/lisp/textmodes/texnfo-upd.el +++ b/lisp/textmodes/texnfo-upd.el | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | ;;; texnfo-upd.el --- a utility for updating nodes and menus in Texinfo files. | 1 | ;;; texnfo-upd.el --- a utility for updating nodes and menus in Texinfo files. |
| 2 | 2 | ||
| 3 | ;;;; Version 2.00 14 Dec 1990 | 3 | ;; Author: Bob Chassell <bob@gnu.ai.mit.edu> |
| 4 | ;; Version: 2.00 | ||
| 5 | ;; Last-Modified: 14 Dec 1990 | ||
| 4 | 6 | ||
| 5 | ;;;; Copyright 1989, 1990, 1992 Free Software Foundation | 7 | ;;;; Copyright 1989, 1990, 1992 Free Software Foundation |
| 6 | 8 | ||
| @@ -20,6 +22,7 @@ | |||
| 20 | ;; along with GNU Emacs; see the file COPYING. If not, write to | 22 | ;; along with GNU Emacs; see the file COPYING. If not, write to |
| 21 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | 23 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
| 22 | 24 | ||
| 25 | ;;; Commentary: | ||
| 23 | 26 | ||
| 24 | ;;;; Summary | 27 | ;;;; Summary |
| 25 | 28 | ||
| @@ -143,6 +146,7 @@ | |||
| 143 | ; Since node names should be more concise than section or chapter | 146 | ; Since node names should be more concise than section or chapter |
| 144 | ; titles, node names so inserted will need to be edited manually. | 147 | ; titles, node names so inserted will need to be edited manually. |
| 145 | 148 | ||
| 149 | ;;; Code: | ||
| 146 | 150 | ||
| 147 | ;;;; Menu Making Functions | 151 | ;;;; Menu Making Functions |
| 148 | 152 | ||
diff --git a/lisp/textmodes/text-mode.el b/lisp/textmodes/text-mode.el index a87d2b09251..d13e3326b4e 100644 --- a/lisp/textmodes/text-mode.el +++ b/lisp/textmodes/text-mode.el | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | ;;; text-mode.el --- text mode, and its idiosyncratic commands. | 1 | ;;; text-mode.el --- text mode, and its idiosyncratic commands. |
| 2 | 2 | ||
| 3 | ;; Maintainer: FSF | ||
| 4 | ;; Last-Modified: 31 Oct 1989 | ||
| 5 | |||
| 3 | ;; Copyright (C) 1985, 1992 Free Software Foundation, Inc. | 6 | ;; Copyright (C) 1985, 1992 Free Software Foundation, Inc. |
| 4 | 7 | ||
| 5 | ;; This file is part of GNU Emacs. | 8 | ;; This file is part of GNU Emacs. |
| @@ -18,6 +21,7 @@ | |||
| 18 | ;; along with GNU Emacs; see the file COPYING. If not, write to | 21 | ;; along with GNU Emacs; see the file COPYING. If not, write to |
| 19 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | 22 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
| 20 | 23 | ||
| 24 | ;;; Code: | ||
| 21 | 25 | ||
| 22 | (defvar text-mode-syntax-table nil | 26 | (defvar text-mode-syntax-table nil |
| 23 | "Syntax table used while in text mode.") | 27 | "Syntax table used while in text mode.") |