diff options
| author | Eric S. Raymond | 1992-05-30 23:12:08 +0000 |
|---|---|---|
| committer | Eric S. Raymond | 1992-05-30 23:12:08 +0000 |
| commit | 1a06eabd17a8eff0635bc7058349f7c22057864c (patch) | |
| tree | 851c3b4adf9217f7ad5d4e6fdc24c8e0efbaa186 | |
| parent | 6594deb0dcec8f1a663fc47b0588a7b4c935a6c5 (diff) | |
| download | emacs-1a06eabd17a8eff0635bc7058349f7c22057864c.tar.gz emacs-1a06eabd17a8eff0635bc7058349f7c22057864c.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/calendar/holidays.el | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/float.el | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/helper.el | 7 | ||||
| -rw-r--r-- | lisp/emulation/edt.el | 4 | ||||
| -rw-r--r-- | lisp/flow-ctrl.el | 7 | ||||
| -rw-r--r-- | lisp/ftp.el | 5 | ||||
| -rw-r--r-- | lisp/gnus.el | 5 | ||||
| -rw-r--r-- | lisp/gnusmail.el | 5 | ||||
| -rw-r--r-- | lisp/gnusmisc.el | 5 | ||||
| -rw-r--r-- | lisp/gnuspost.el | 5 | ||||
| -rw-r--r-- | lisp/gosmacs.el | 5 | ||||
| -rw-r--r-- | lisp/grow-vers.el | 4 | ||||
| -rw-r--r-- | lisp/help.el | 5 | ||||
| -rw-r--r-- | lisp/hexl.el | 6 | ||||
| -rw-r--r-- | lisp/inc-vers.el | 5 | ||||
| -rw-r--r-- | lisp/indent.el | 5 | ||||
| -rw-r--r-- | lisp/info.el | 4 | ||||
| -rw-r--r-- | lisp/informat.el | 5 | ||||
| -rw-r--r-- | lisp/international/iso-ascii.el | 5 | ||||
| -rw-r--r-- | lisp/international/iso-insert.el | 5 | ||||
| -rw-r--r-- | lisp/international/iso-swed.el | 5 | ||||
| -rw-r--r-- | lisp/isearch-old.el | 5 | ||||
| -rw-r--r-- | lisp/kermit.el | 5 | ||||
| -rw-r--r-- | lisp/play/gomoku.el | 5 | ||||
| -rw-r--r-- | lisp/play/hanoi.el | 6 | ||||
| -rw-r--r-- | lisp/progmodes/fortran.el | 4 | ||||
| -rw-r--r-- | lisp/progmodes/hideif.el | 7 | ||||
| -rw-r--r-- | lisp/progmodes/icon.el | 3 | ||||
| -rw-r--r-- | lisp/textmodes/ispell4.el | 6 |
29 files changed, 105 insertions, 42 deletions
diff --git a/lisp/calendar/holidays.el b/lisp/calendar/holidays.el index ccc99f55eb2..437be3c5aba 100644 --- a/lisp/calendar/holidays.el +++ b/lisp/calendar/holidays.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Holiday functions. | 1 | ;;; holidays.el --- holiday functions for the calendar package |
| 2 | |||
| 2 | ;; Copyright (C) 1989, 1990, 1991 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1989, 1990, 1991 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -586,3 +587,4 @@ checked. If nil, the holiday (car (cdr (cdr X))), if there, is checked." | |||
| 586 | 587 | ||
| 587 | (provide 'holidays) | 588 | (provide 'holidays) |
| 588 | 589 | ||
| 590 | ;;; holidays.el ends here | ||
diff --git a/lisp/emacs-lisp/float.el b/lisp/emacs-lisp/float.el index 3c2921c506f..d01ba1e291d 100644 --- a/lisp/emacs-lisp/float.el +++ b/lisp/emacs-lisp/float.el | |||
| @@ -1,3 +1,5 @@ | |||
| 1 | ;;; float.el --- floating point arithmetic package. | ||
| 2 | |||
| 1 | ;; Copyright (C) 1986 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1986 Free Software Foundation, Inc. |
| 2 | ;; Author Bill Rosenblatt | 4 | ;; Author Bill Rosenblatt |
| 3 | 5 | ||
| @@ -17,8 +19,6 @@ | |||
| 17 | ;; along with GNU Emacs; see the file COPYING. If not, write to | 19 | ;; along with GNU Emacs; see the file COPYING. If not, write to |
| 18 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | 20 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
| 19 | 21 | ||
| 20 | ;; Floating point arithmetic package. | ||
| 21 | ;; | ||
| 22 | ;; Floating point numbers are represented by dot-pairs (mant . exp) | 22 | ;; Floating point numbers are represented by dot-pairs (mant . exp) |
| 23 | ;; where mant is the 24-bit signed integral mantissa and exp is the | 23 | ;; where mant is the 24-bit signed integral mantissa and exp is the |
| 24 | ;; base 2 exponent. | 24 | ;; base 2 exponent. |
| @@ -447,3 +447,4 @@ are recognized." | |||
| 447 | 447 | ||
| 448 | (provide 'float) | 448 | (provide 'float) |
| 449 | 449 | ||
| 450 | ;;; float.el ends here | ||
diff --git a/lisp/emacs-lisp/helper.el b/lisp/emacs-lisp/helper.el index 0064bc66e07..e3565856f56 100644 --- a/lisp/emacs-lisp/helper.el +++ b/lisp/emacs-lisp/helper.el | |||
| @@ -1,5 +1,4 @@ | |||
| 1 | ;; helper - utility help package for modes which want to provide help | 1 | ;;; helper.el --- utility help package supporting help in electric modes |
| 2 | ;; without relinquishing control, e.g. `electric' modes. | ||
| 3 | 2 | ||
| 4 | ;; Copyright (C) 1985 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1985 Free Software Foundation, Inc. |
| 5 | ;; Principal author K. Shane Hartman | 4 | ;; Principal author K. Shane Hartman |
| @@ -147,4 +146,6 @@ | |||
| 147 | (ding) | 146 | (ding) |
| 148 | (setq continue nil)))))) | 147 | (setq continue nil)))))) |
| 149 | 148 | ||
| 150 | (provide 'helper) \ No newline at end of file | 149 | (provide 'helper) |
| 150 | |||
| 151 | ;;; helper.el ends here | ||
diff --git a/lisp/emulation/edt.el b/lisp/emulation/edt.el index be7c051e82a..8d60eeeb347 100644 --- a/lisp/emulation/edt.el +++ b/lisp/emulation/edt.el | |||
| @@ -1,3 +1,5 @@ | |||
| 1 | ;;; edt.el --- EDT emulation in Emacs | ||
| 2 | |||
| 1 | ;; Copyright (C) 1986 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1986 Free Software Foundation, Inc. |
| 2 | ;; It started from public domain code by Mike Clarkson | 4 | ;; It started from public domain code by Mike Clarkson |
| 3 | ;; but has been greatly altered. | 5 | ;; but has been greatly altered. |
| @@ -396,3 +398,5 @@ by the PF1 key. GOLD is the ASCII the 7-bit escape sequence <ESC>OP.") | |||
| 396 | (or (assq 'edt-direction-string minor-mode-alist) | 398 | (or (assq 'edt-direction-string minor-mode-alist) |
| 397 | (setq minor-mode-alist (cons '(edt-direction-string edt-direction-string) | 399 | (setq minor-mode-alist (cons '(edt-direction-string edt-direction-string) |
| 398 | minor-mode-alist))) | 400 | minor-mode-alist))) |
| 401 | |||
| 402 | ;;; edt.el ends here | ||
diff --git a/lisp/flow-ctrl.el b/lisp/flow-ctrl.el index bcd2c152b4f..68d5165dc45 100644 --- a/lisp/flow-ctrl.el +++ b/lisp/flow-ctrl.el | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | ;;; Help for lusers on cu(1) or terminals with wired-in ^S/^Q flow control | 1 | ;;; flow-ctrl.el --- help for lusers on cu(1) or terminals with wired-in ^S/^Q flow control |
| 2 | ;;; | 2 | |
| 3 | ;;; Copyright (C) 1990 Free Software Foundation, Inc. | 3 | ;;; Copyright (C) 1990 Free Software Foundation, Inc. |
| 4 | ;;; Copyright (C) 1991 Kevin Gallagher | 4 | ;;; Copyright (C) 1991 Kevin Gallagher |
| 5 | ;;; Adapted for Emacs 19 by Eric S. Raymond <eric@snark.thyrsus.com> | 5 | ;;; Adapted for Emacs 19 by Eric S. Raymond <eric@snark.thyrsus.com> |
| @@ -80,7 +80,6 @@ and C-q characters to OS." | |||
| 80 | (and (memstr= term losing-terminal-types) (evade-flow-control))) | 80 | (and (memstr= term losing-terminal-types) (evade-flow-control))) |
| 81 | ) | 81 | ) |
| 82 | 82 | ||
| 83 | ;;; flow-ctrl.el ends here | ||
| 84 | |||
| 85 | (provide 'flow-ctrl) | 83 | (provide 'flow-ctrl) |
| 86 | 84 | ||
| 85 | ;;; flow-ctrl.el ends here | ||
diff --git a/lisp/ftp.el b/lisp/ftp.el index 44655357ac3..45e15941245 100644 --- a/lisp/ftp.el +++ b/lisp/ftp.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; File input and output over Internet using FTP | 1 | ;;; ftp.el --- file input and output over Internet using FTP |
| 2 | |||
| 2 | ;; Copyright (C) 1987 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1987 Free Software Foundation, Inc. |
| 3 | ;; Author mly@prep.ai.mit.edu. | 4 | ;; Author mly@prep.ai.mit.edu. |
| 4 | 5 | ||
| @@ -384,3 +385,5 @@ USER and PASSWORD are defaulted from the values used when | |||
| 384 | (= (process-exit-status process) 0) | 385 | (= (process-exit-status process) 0) |
| 385 | (set-buffer-modified-p nil)) | 386 | (set-buffer-modified-p nil)) |
| 386 | (message "Reverted"))) | 387 | (message "Reverted"))) |
| 388 | |||
| 389 | ;;; ftp.el ends here | ||
diff --git a/lisp/gnus.el b/lisp/gnus.el index 977b0444f08..98d8c7f54d2 100644 --- a/lisp/gnus.el +++ b/lisp/gnus.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;;; GNUS: an NNTP-based News Reader for GNU Emacs | 1 | ;;; gnus.el --- GNUS: an NNTP-based News Reader for GNU Emacs |
| 2 | |||
| 2 | ;; Copyright (C) 1987, 1988, 1989 Fujitsu Laboratories LTD. | 3 | ;; Copyright (C) 1987, 1988, 1989 Fujitsu Laboratories LTD. |
| 3 | ;; Copyright (C) 1987, 1988, 1989, 1990 Masanobu UMEDA | 4 | ;; Copyright (C) 1987, 1988, 1989, 1990 Masanobu UMEDA |
| 4 | ;; $Header: gnus.el,v 3.13 90/03/23 13:24:27 umerin Locked $ | 5 | ;; $Header: gnus.el,v 3.13 90/03/23 13:24:27 umerin Locked $ |
| @@ -6080,3 +6081,5 @@ Range of OBJ is expressed as `((beg1 . end1) (beg2 . end2) ...)." | |||
| 6080 | ;;end: | 6081 | ;;end: |
| 6081 | 6082 | ||
| 6082 | (provide 'gnus) | 6083 | (provide 'gnus) |
| 6084 | |||
| 6085 | ;;; gnus.el ends here | ||
diff --git a/lisp/gnusmail.el b/lisp/gnusmail.el index ad09ee98197..8ac0b06f02a 100644 --- a/lisp/gnusmail.el +++ b/lisp/gnusmail.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;;; Mail reply commands for GNUS newsreader | 1 | ;;; gnusmail.el --- mail reply commands for GNUS newsreader |
| 2 | |||
| 2 | ;; Copyright (C) 1990 Masanobu UMEDA | 3 | ;; Copyright (C) 1990 Masanobu UMEDA |
| 3 | ;; $Header: gnusmail.el,v 1.1 90/03/23 13:24:39 umerin Locked $ | 4 | ;; $Header: gnusmail.el,v 1.1 90/03/23 13:24:39 umerin Locked $ |
| 4 | 5 | ||
| @@ -147,3 +148,5 @@ The command \\[mh-yank-cur-msg] yanks the original message into current buffer." | |||
| 147 | (setq mh-sent-from-msg 1))) | 148 | (setq mh-sent-from-msg 1))) |
| 148 | 149 | ||
| 149 | (provide 'gnusmail) | 150 | (provide 'gnusmail) |
| 151 | |||
| 152 | ;;; gnusmail.el ends here | ||
diff --git a/lisp/gnusmisc.el b/lisp/gnusmisc.el index 17238369da0..7518571ee07 100644 --- a/lisp/gnusmisc.el +++ b/lisp/gnusmisc.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;;; Miscellaneous commands for GNUS newsreader | 1 | ;;; gnusmisc.el --- miscellaneous commands for GNUS newsreader |
| 2 | |||
| 2 | ;; Copyright (C) 1989 Fujitsu Laboratories LTD. | 3 | ;; Copyright (C) 1989 Fujitsu Laboratories LTD. |
| 3 | ;; Copyright (C) 1989, 1990 Masanobu UMEDA | 4 | ;; Copyright (C) 1989, 1990 Masanobu UMEDA |
| 4 | ;; $Header: gnusmisc.el,v 1.2 90/03/23 13:25:04 umerin Locked $ | 5 | ;; $Header: gnusmisc.el,v 1.2 90/03/23 13:25:04 umerin Locked $ |
| @@ -213,3 +214,5 @@ inserting it before the newsgroup on the line containging point." | |||
| 213 | )) | 214 | )) |
| 214 | 215 | ||
| 215 | (provide 'gnusmisc) | 216 | (provide 'gnusmisc) |
| 217 | |||
| 218 | ;;; gnusmisc.el ends here | ||
diff --git a/lisp/gnuspost.el b/lisp/gnuspost.el index 9538aeaea91..f13eb9bdf92 100644 --- a/lisp/gnuspost.el +++ b/lisp/gnuspost.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;;; Post news commands for GNUS newsreader | 1 | ;;; gnuspost.el --- post news commands for GNUS newsreader |
| 2 | |||
| 2 | ;; Copyright (C) 1989 Fujitsu Laboratories LTD. | 3 | ;; Copyright (C) 1989 Fujitsu Laboratories LTD. |
| 3 | ;; Copyright (C) 1989, 1990 Masanobu UMEDA | 4 | ;; Copyright (C) 1989, 1990 Masanobu UMEDA |
| 4 | ;; $Header: gnuspost.el,v 1.2 90/03/23 13:25:16 umerin Locked $ | 5 | ;; $Header: gnuspost.el,v 1.2 90/03/23 13:25:16 umerin Locked $ |
| @@ -671,3 +672,5 @@ containing the organization." | |||
| 671 | )) | 672 | )) |
| 672 | 673 | ||
| 673 | (provide 'gnuspost) | 674 | (provide 'gnuspost) |
| 675 | |||
| 676 | ;;; gnuspost.el ends here | ||
diff --git a/lisp/gosmacs.el b/lisp/gosmacs.el index 1f227abe364..7246959f3a5 100644 --- a/lisp/gosmacs.el +++ b/lisp/gosmacs.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Rebindings to imitate Gosmacs. | 1 | ;;; gosmacs.el --- rebindings to imitate Gosmacs. |
| 2 | |||
| 2 | ;; Copyright (C) 1986 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1986 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -101,3 +102,5 @@ From the window at the lower right corner, select the one at the upper left." | |||
| 101 | "Scroll the selected window up so that the current line is at the top." | 102 | "Scroll the selected window up so that the current line is at the top." |
| 102 | (interactive) | 103 | (interactive) |
| 103 | (recenter 0)) | 104 | (recenter 0)) |
| 105 | |||
| 106 | ;;; gosmacs.el ends here | ||
diff --git a/lisp/grow-vers.el b/lisp/grow-vers.el index bf55146c6a6..7e34961faaa 100644 --- a/lisp/grow-vers.el +++ b/lisp/grow-vers.el | |||
| @@ -1,3 +1,5 @@ | |||
| 1 | ;;; grow-vers.el --- increment Emacs version number | ||
| 2 | |||
| 1 | ;; Load this file to add a new level (starting at zero) | 3 | ;; Load this file to add a new level (starting at zero) |
| 2 | ;; to the Emacs version number recorded in version.el. | 4 | ;; to the Emacs version number recorded in version.el. |
| 3 | ;; Copyright (C) 1985 Free Software Foundation, Inc. | 5 | ;; Copyright (C) 1985 Free Software Foundation, Inc. |
| @@ -28,3 +30,5 @@ | |||
| 28 | ;; so that we do not alter the current version. | 30 | ;; so that we do not alter the current version. |
| 29 | (delete-file "lisp/version.el") | 31 | (delete-file "lisp/version.el") |
| 30 | (write-region (point-min) (point-max) "lisp/version.el" nil 'nomsg) | 32 | (write-region (point-min) (point-max) "lisp/version.el" nil 'nomsg) |
| 33 | |||
| 34 | ;;; grow-vers.el ends here | ||
diff --git a/lisp/help.el b/lisp/help.el index bc71ffa2084..48e34665732 100644 --- a/lisp/help.el +++ b/lisp/help.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Help commands for Emacs | 1 | ;;; help.el --- help commands for Emacs |
| 2 | |||
| 2 | ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -383,3 +384,5 @@ to the specified name LIBRARY (a la calling `load' instead of `load-library')." | |||
| 383 | load-path) | 384 | load-path) |
| 384 | (message "No library %s in search path" library) | 385 | (message "No library %s in search path" library) |
| 385 | nil)) | 386 | nil)) |
| 387 | |||
| 388 | ;;; help.el ends here | ||
diff --git a/lisp/hexl.el b/lisp/hexl.el index 8671413e81a..b736f28fa40 100644 --- a/lisp/hexl.el +++ b/lisp/hexl.el | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | ;; -*-Emacs-Lisp-*- | 1 | ;;; hexl-mode.el --- edit a file in a hex dump format. |
| 2 | ;; hexl-mode -- Edit a file in a hex dump format. | 2 | |
| 3 | ;; Copyright (C) 1989 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1989 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -656,4 +656,4 @@ You may also type up to 3 octal digits, to insert a character with that code" | |||
| 656 | (define-key hexl-mode-map "\C-x\C-s" 'hexl-save-buffer) | 656 | (define-key hexl-mode-map "\C-x\C-s" 'hexl-save-buffer) |
| 657 | (define-key hexl-mode-map "\C-x\C-t" 'undefined)) | 657 | (define-key hexl-mode-map "\C-x\C-t" 'undefined)) |
| 658 | 658 | ||
| 659 | ;; The End. | 659 | ;;; hexl.el ends here |
diff --git a/lisp/inc-vers.el b/lisp/inc-vers.el index 13a4fb17e80..1eed7b35940 100644 --- a/lisp/inc-vers.el +++ b/lisp/inc-vers.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Load this file to increment the recorded Emacs version number. | 1 | ;;; inc-vers.el --- load this to increment the recorded Emacs version number. |
| 2 | |||
| 2 | ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -41,3 +42,5 @@ | |||
| 41 | (set-buffer-modified-p nil) | 42 | (set-buffer-modified-p nil) |
| 42 | 43 | ||
| 43 | (kill-emacs) | 44 | (kill-emacs) |
| 45 | |||
| 46 | ;;; inc-vers.el ends here | ||
diff --git a/lisp/indent.el b/lisp/indent.el index 781a1897dd7..76f16ac4555 100644 --- a/lisp/indent.el +++ b/lisp/indent.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Indentation commands for Emacs | 1 | ;;; indent.el --- indentation commands for Emacs |
| 2 | |||
| 2 | ;; Copyright (C) 1985 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1985 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -244,3 +245,5 @@ Use \\[edit-tab-stops] to edit them interactively." | |||
| 244 | (define-key esc-map "\034" 'indent-region) | 245 | (define-key esc-map "\034" 'indent-region) |
| 245 | (define-key ctl-x-map "\t" 'indent-rigidly) | 246 | (define-key ctl-x-map "\t" 'indent-rigidly) |
| 246 | (define-key esc-map "i" 'tab-to-tab-stop) | 247 | (define-key esc-map "i" 'tab-to-tab-stop) |
| 248 | |||
| 249 | ;;; indent.el ends here | ||
diff --git a/lisp/info.el b/lisp/info.el index 8ab04955db9..772fa26ebf1 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Info package for Emacs -- could use a "create node" feature. | 1 | ;;; info.el --- info package for Emacs -- could use a "create node" feature. |
| 2 | |||
| 2 | ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -995,3 +996,4 @@ Interactively, if the binding is execute-extended-command, a command is read." | |||
| 995 | 996 | ||
| 996 | (provide 'info) | 997 | (provide 'info) |
| 997 | 998 | ||
| 999 | ;;; info.el ends here | ||
diff --git a/lisp/informat.el b/lisp/informat.el index 1f91cb5b8be..939b1cbb632 100644 --- a/lisp/informat.el +++ b/lisp/informat.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Info support functions package for Emacs | 1 | ;;; informat.el --- info support functions package for Emacs |
| 2 | |||
| 2 | ;; Copyright (C) 1986 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1986 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -413,3 +414,5 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"" | |||
| 413 | (save-buffer)))) | 414 | (save-buffer)))) |
| 414 | (error (message ">> Error: %s" (prin1-to-string err)))))) | 415 | (error (message ">> Error: %s" (prin1-to-string err)))))) |
| 415 | (kill-emacs error)))) | 416 | (kill-emacs error)))) |
| 417 | |||
| 418 | ;;; informat.el ends here | ||
diff --git a/lisp/international/iso-ascii.el b/lisp/international/iso-ascii.el index 13aeaaa8c76..b90d5aa47c0 100644 --- a/lisp/international/iso-ascii.el +++ b/lisp/international/iso-ascii.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Set up char tables for ISO 8859/1 character set for ASCII terminals. | 1 | ;;; iso-ascii.el --- set up char tables for ISO 8859/1 character set for ASCII terminals. |
| 2 | |||
| 2 | ;; Copyright (C) 1987 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1987 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -124,3 +125,5 @@ | |||
| 124 | (standard-display-ascii 255 "{\"y}") ; small y with diaeresis or umlaut mark | 125 | (standard-display-ascii 255 "{\"y}") ; small y with diaeresis or umlaut mark |
| 125 | 126 | ||
| 126 | (provide 'iso8859-1-ascii) | 127 | (provide 'iso8859-1-ascii) |
| 128 | |||
| 129 | ;;; iso-ascii.el ends here | ||
diff --git a/lisp/international/iso-insert.el b/lisp/international/iso-insert.el index 3ea2e8530e8..84f19858735 100644 --- a/lisp/international/iso-insert.el +++ b/lisp/international/iso-insert.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Insert functions for ISO 8859/1. | 1 | ;;; iso-insert.el --- insert functions for ISO 8859/1. |
| 2 | |||
| 2 | ;; Copyright (C) 1987 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1987 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -618,3 +619,5 @@ | |||
| 618 | ) | 619 | ) |
| 619 | 620 | ||
| 620 | (provide 'iso8859-1-insert) | 621 | (provide 'iso8859-1-insert) |
| 622 | |||
| 623 | ;;; iso-insert.el ends here | ||
diff --git a/lisp/international/iso-swed.el b/lisp/international/iso-swed.el index 9ab2134381a..0e8caf49ed0 100644 --- a/lisp/international/iso-swed.el +++ b/lisp/international/iso-swed.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Set up char tables for ISO 8859/1 for Swedish/Finnish terminals. | 1 | ;;; iso-swed.el --- set up char tables for ISO 8859/1 for Swedish/Finnish terminals. |
| 2 | |||
| 2 | ;; Copyright (C) 1987 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1987 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -138,3 +139,5 @@ | |||
| 138 | (standard-display-ascii 255 "{\"y}") ; small y with diaeresis or umlaut mark | 139 | (standard-display-ascii 255 "{\"y}") ; small y with diaeresis or umlaut mark |
| 139 | 140 | ||
| 140 | (provide 'iso8859-1-swedish) | 141 | (provide 'iso8859-1-swedish) |
| 142 | |||
| 143 | ;;; iso-swed.el ends here | ||
diff --git a/lisp/isearch-old.el b/lisp/isearch-old.el index 57e04fc3956..68dc943a73a 100644 --- a/lisp/isearch-old.el +++ b/lisp/isearch-old.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Incremental search | 1 | ;;; isearch.el --- incremental search commands |
| 2 | |||
| 2 | ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -621,3 +622,5 @@ is treated as a regexp. See \\[isearch-forward] for more info." | |||
| 621 | (setq command-history (cons (list function string) command-history)) | 622 | (setq command-history (cons (list function string) command-history)) |
| 622 | ;; Go ahead and search. | 623 | ;; Go ahead and search. |
| 623 | (funcall function string))) | 624 | (funcall function string))) |
| 625 | |||
| 626 | ;;; isearch.el ends here | ||
diff --git a/lisp/kermit.el b/lisp/kermit.el index a66165b9671..dfbd82561d5 100644 --- a/lisp/kermit.el +++ b/lisp/kermit.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;;Additions to shell mode for use with kermit, etc. | 1 | ;;; kermit.el --- additions to shell mode for use with kermit, etc. |
| 2 | |||
| 2 | ;;Feb 1988, Jeff Norden - jeff@colgate.csnet | 3 | ;;Feb 1988, Jeff Norden - jeff@colgate.csnet |
| 3 | ;; Copyright (C) 1988 Free Software Foundation, Inc. | 4 | ;; Copyright (C) 1988 Free Software Foundation, Inc. |
| 4 | 5 | ||
| @@ -136,4 +137,4 @@ command \"kermit | tr -d '\\015'\"." | |||
| 136 | (interactive) | 137 | (interactive) |
| 137 | (set-process-filter (get-buffer-process (current-buffer)) nil)) | 138 | (set-process-filter (get-buffer-process (current-buffer)) nil)) |
| 138 | 139 | ||
| 139 | 140 | ;;; kermit.el ends here | |
diff --git a/lisp/play/gomoku.el b/lisp/play/gomoku.el index a3783e63c5e..b3696b50b33 100644 --- a/lisp/play/gomoku.el +++ b/lisp/play/gomoku.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;; Gomoku game between you and Emacs | 1 | ;;; gomoku.el --- Gomoku game between you and Emacs |
| 2 | |||
| 2 | ;; Copyright (C) 1988 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1988 Free Software Foundation, Inc. |
| 3 | 4 | ||
| 4 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| @@ -1157,4 +1158,4 @@ If the game is finished, this command requests for another game." | |||
| 1157 | 1158 | ||
| 1158 | (provide 'gomoku) | 1159 | (provide 'gomoku) |
| 1159 | 1160 | ||
| 1160 | 1161 | ;;; gomoku.el ends here | |
diff --git a/lisp/play/hanoi.el b/lisp/play/hanoi.el index 425f98f5191..814656b0d7a 100644 --- a/lisp/play/hanoi.el +++ b/lisp/play/hanoi.el | |||
| @@ -1,8 +1,6 @@ | |||
| 1 | ; | 1 | ;;; hanoi.el --- towers of hanoi in GNUmacs |
| 2 | ; hanoi - towers of hanoi in GNUmacs | 2 | |
| 3 | ; | ||
| 4 | ; Author (a) 1985, Damon Anton Permezel | 3 | ; Author (a) 1985, Damon Anton Permezel |
| 5 | ; | ||
| 6 | 4 | ||
| 7 | ;;; | 5 | ;;; |
| 8 | ;;; hanoi-topos - direct cursor addressing | 6 | ;;; hanoi-topos - direct cursor addressing |
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el index 6ed3645ec9e..aad14d232c2 100644 --- a/lisp/progmodes/fortran.el +++ b/lisp/progmodes/fortran.el | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | ;;; Fortran mode for GNU Emacs (version 1.28.3, July 15, 1991) | 1 | ;;; fortran.el --- Fortran mode for GNU Emacs (version 1.28.3, July 15, 1991) |
| 2 | |||
| 2 | ;;; Copyright (c) 1991 Free Software Foundation, Inc. | 3 | ;;; Copyright (c) 1991 Free Software Foundation, Inc. |
| 3 | ;;; Written by Michael D. Prange (prange@erl.mit.edu) | 4 | ;;; Written by Michael D. Prange (prange@erl.mit.edu) |
| 4 | ;;; Maintained (as of version 1.28) by Stephen A. Wood (saw@hallc1.cebaf.gov) | 5 | ;;; Maintained (as of version 1.28) by Stephen A. Wood (saw@hallc1.cebaf.gov) |
| @@ -995,3 +996,4 @@ character format style." | |||
| 995 | 996 | ||
| 996 | (provide 'fortran) | 997 | (provide 'fortran) |
| 997 | 998 | ||
| 999 | ;;; fortran.el ends here | ||
diff --git a/lisp/progmodes/hideif.el b/lisp/progmodes/hideif.el index 4a1b9897808..a43b91ce091 100644 --- a/lisp/progmodes/hideif.el +++ b/lisp/progmodes/hideif.el | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | ;;; hide-ifdef-mode.el Hides selected code within ifdef. | 1 | ;;; hide-ifdef-mode.el --- ides selected code within ifdef. |
| 2 | ;;; | 2 | |
| 3 | ;;; Copyright (C) 1988 Brian Marick and Daniel LaLiberte | 3 | ;;; Copyright (C) 1988 Brian Marick and Daniel LaLiberte |
| 4 | ;;; Written by Brian Marick, at Gould, Computer Systems Division, Urbana IL. | 4 | ;;; Written by Brian Marick, at Gould, Computer Systems Division, Urbana IL. |
| 5 | ;;; Extensively modified by Daniel LaLiberte (while at Gould). | 5 | ;;; Extensively modified by Daniel LaLiberte (while at Gould). |
| @@ -1004,4 +1004,5 @@ Turn off hiding by calling show-ifdef." | |||
| 1004 | (error "No define list for %s" name)) | 1004 | (error "No define list for %s" name)) |
| 1005 | (if hide-ifdef-hiding (hide-ifdefs)))) | 1005 | (if hide-ifdef-hiding (hide-ifdefs)))) |
| 1006 | 1006 | ||
| 1007 | ;===%%SF%% exports (End) === | 1007 | ;;; hideif.el ends here |
| 1008 | |||
diff --git a/lisp/progmodes/icon.el b/lisp/progmodes/icon.el index c381f812105..cab251427ba 100644 --- a/lisp/progmodes/icon.el +++ b/lisp/progmodes/icon.el | |||
| @@ -1,3 +1,5 @@ | |||
| 1 | ;;; icon.el --- mode for editing Icon code | ||
| 2 | |||
| 1 | ;; Note: use | 3 | ;; Note: use |
| 2 | ;; (autoload 'icon-mode "icon" nil t) | 4 | ;; (autoload 'icon-mode "icon" nil t) |
| 3 | ;; (setq auto-mode-alist (cons '("\\.icn$" . icon-mode) auto-mode-alist)) | 5 | ;; (setq auto-mode-alist (cons '("\\.icn$" . icon-mode) auto-mode-alist)) |
| @@ -547,3 +549,4 @@ Returns nil if line starts inside a string, t if in a comment." | |||
| 547 | (if (re-search-forward comment-start-skip (save-excursion (end-of-line) (point)) t) | 549 | (if (re-search-forward comment-start-skip (save-excursion (end-of-line) (point)) t) |
| 548 | (progn (indent-for-comment) (beginning-of-line)))))))))) | 550 | (progn (indent-for-comment) (beginning-of-line)))))))))) |
| 549 | 551 | ||
| 552 | ;;; icon.el ends here | ||
diff --git a/lisp/textmodes/ispell4.el b/lisp/textmodes/ispell4.el index ca9b4af48ab..d0f653682f7 100644 --- a/lisp/textmodes/ispell4.el +++ b/lisp/textmodes/ispell4.el | |||
| @@ -1,5 +1,6 @@ | |||
| 1 | ;;This is the GNU EMACS interface to GNU ISPELL version 3. | 1 | ;;; ispell.el --- this is the GNU EMACS interface to GNU ISPELL version 3. |
| 2 | ;; Copyright (C) 1990, 1991 Free Software Foundation, Inc. | 2 | |
| 3 | ;;Copyright (C) 1990, 1991 Free Software Foundation, Inc. | ||
| 3 | ;; | 4 | ;; |
| 4 | ;;This file is part of GNU ISPELL. | 5 | ;;This file is part of GNU ISPELL. |
| 5 | ;; | 6 | ;; |
| @@ -547,3 +548,4 @@ L lookup; Q quit\n") | |||
| 547 | (kill-emacs 1)) | 548 | (kill-emacs 1)) |
| 548 | (write-region (point-min) (point-max) "ispell.info")) | 549 | (write-region (point-min) (point-max) "ispell.info")) |
| 549 | 550 | ||
| 551 | ;;; ispell.el ends here | ||