aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond1992-05-30 22:12:04 +0000
committerEric S. Raymond1992-05-30 22:12:04 +0000
commit6594deb0dcec8f1a663fc47b0588a7b4c935a6c5 (patch)
tree29925fd14277477ef3fa88270c19785985926c04
parentc88ab9ce4a0dbacb1f5bd272c1e7419f1e0f4b9d (diff)
downloademacs-6594deb0dcec8f1a663fc47b0588a7b4c935a6c5.tar.gz
emacs-6594deb0dcec8f1a663fc47b0588a7b4c935a6c5.zip
*** empty log message ***
-rw-r--r--lisp/emacs-lisp/lisp-mode.el4
-rw-r--r--lisp/emacs-lisp/lisp.el5
-rw-r--r--lisp/emulation/mlconvert.el4
-rw-r--r--lisp/emulation/mlsupport.el4
-rw-r--r--lisp/ledit.el5
-rw-r--r--lisp/loadup.el5
-rw-r--r--lisp/lpr.el5
-rw-r--r--lisp/macros.el5
-rw-r--r--lisp/mail/mail-utils.el4
-rw-r--r--lisp/mail/mailabbrev.el5
-rw-r--r--lisp/mail/mailalias.el5
-rw-r--r--lisp/mail/mailpost.el7
-rw-r--r--lisp/makesum.el5
-rw-r--r--lisp/man.el5
-rw-r--r--lisp/map-ynp.el5
-rw-r--r--lisp/medit.el6
-rw-r--r--lisp/mhspool.el5
-rw-r--r--lisp/mim-mode.el4
-rw-r--r--lisp/mim-syntax.el6
-rw-r--r--lisp/misc.el5
-rw-r--r--lisp/mouse.el4
-rw-r--r--lisp/netunam.el5
-rw-r--r--lisp/nnspool.el5
-rw-r--r--lisp/nntp.el4
-rw-r--r--lisp/novice.el4
-rw-r--r--lisp/options.el4
-rw-r--r--lisp/paths.el5
-rw-r--r--lisp/play/life.el4
-rw-r--r--lisp/play/meese.el4
-rw-r--r--lisp/play/mpuz.el6
-rw-r--r--lisp/progmodes/modula2.el5
-rw-r--r--lisp/progmodes/prolog.el5
-rw-r--r--lisp/rect.el5
-rw-r--r--lisp/textmodes/nroff-mode.el6
-rw-r--r--lisp/textmodes/ooutline.el4
-rw-r--r--lisp/textmodes/page-ext.el6
-rw-r--r--lisp/textmodes/page.el6
-rw-r--r--lisp/textmodes/paragraphs.el5
-rw-r--r--lisp/textmodes/picture.el4
-rw-r--r--lisp/textmodes/refbib.el5
40 files changed, 145 insertions, 50 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index 78310112c10..6cf7253b443 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -1,4 +1,5 @@
1;; Lisp mode, and its idiosyncratic commands. 1;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands.
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.
@@ -614,3 +615,4 @@ means don't indent that line."
614 615
615(provide 'lisp-mode) 616(provide 'lisp-mode)
616 617
618;;; lisp-mode.el ends here
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el
index db2a4169ae3..cc3b189ea3d 100644
--- a/lisp/emacs-lisp/lisp.el
+++ b/lisp/emacs-lisp/lisp.el
@@ -1,4 +1,5 @@
1;; Lisp editing commands for Emacs 1;;; lisp.el --- Lisp editing 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.
@@ -260,3 +261,5 @@ function definitions, values or properties are considered."
260 (with-output-to-temp-buffer " *Completions*" 261 (with-output-to-temp-buffer " *Completions*"
261 (display-completion-list list))) 262 (display-completion-list list)))
262 (message "Making completion list...%s" "done"))))) 263 (message "Making completion list...%s" "done")))))
264
265;;; lisp.el ends here
diff --git a/lisp/emulation/mlconvert.el b/lisp/emulation/mlconvert.el
index 3f14afa505e..54b177792c8 100644
--- a/lisp/emulation/mlconvert.el
+++ b/lisp/emulation/mlconvert.el
@@ -1,4 +1,5 @@
1;; Convert buffer of Mocklisp code to real lisp. 1;;; mlconvert.el --- convert buffer of Mocklisp code to real lisp.
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.
@@ -271,3 +272,4 @@
271 272
272;Variable pause-writes-files 273;Variable pause-writes-files
273 274
275;;; mlconvert.el ends here
diff --git a/lisp/emulation/mlsupport.el b/lisp/emulation/mlsupport.el
index 521b64ce281..65af46a309e 100644
--- a/lisp/emulation/mlsupport.el
+++ b/lisp/emulation/mlsupport.el
@@ -1,4 +1,5 @@
1;; Run-time support for mocklisp code. 1;;; mlsupport.el --- run-time support for mocklisp code.
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.
@@ -404,3 +405,4 @@
404 405
405(provide 'mlsupport) 406(provide 'mlsupport)
406 407
408;;; mlsupport.el ends here
diff --git a/lisp/ledit.el b/lisp/ledit.el
index 7981ef851fd..90347323056 100644
--- a/lisp/ledit.el
+++ b/lisp/ledit.el
@@ -1,4 +1,5 @@
1;; Emacs side of ledit interface 1;;; ledit.el --- Emacs side of ledit interface
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.
@@ -141,3 +142,5 @@ do (setq lisp-mode-hook 'ledit-from-lisp-mode)"
141 (setq mode-name "Ledit") 142 (setq mode-name "Ledit")
142 (setq major-mode 'ledit-mode) 143 (setq major-mode 'ledit-mode)
143 (run-hooks 'ledit-mode-hook)) 144 (run-hooks 'ledit-mode-hook))
145
146;;; ledit.el ends here
diff --git a/lisp/loadup.el b/lisp/loadup.el
index 3b8e7bbd67e..7f3370493c6 100644
--- a/lisp/loadup.el
+++ b/lisp/loadup.el
@@ -1,4 +1,5 @@
1;;Load up standardly loaded Lisp files for Emacs. 1;;; loadup.el --- load up standardly loaded Lisp files for Emacs.
2
2;; This is loaded into a bare Emacs to make a dumpable one. 3;; This is loaded into a bare Emacs to make a dumpable one.
3;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc. 4;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
4 5
@@ -147,3 +148,5 @@
147 148
148(or (fboundp 'dump-emacs) 149(or (fboundp 'dump-emacs)
149 (eval top-level)) 150 (eval top-level))
151
152;;; loadup.el ends here
diff --git a/lisp/lpr.el b/lisp/lpr.el
index 296224679b9..e7d182fede8 100644
--- a/lisp/lpr.el
+++ b/lisp/lpr.el
@@ -1,4 +1,5 @@
1;; Print Emacs buffer on line printer. 1;;; lpr.el --- print Emacs buffer on line printer.
2
2;; Copyright (C) 1985, 1988, 1992 Free Software Foundation, Inc. 3;; Copyright (C) 1985, 1988, 1992 Free Software Foundation, Inc.
3 4
4;; This file is part of GNU Emacs. 5;; This file is part of GNU Emacs.
@@ -94,3 +95,5 @@ See definition of `print-region-1' for calling conventions.")
94 (widen) (erase-buffer) 95 (widen) (erase-buffer)
95 (insert-buffer-substring oldbuf start end) 96 (insert-buffer-substring oldbuf start end)
96 (setq start (point-min) end (point-max))))) 97 (setq start (point-min) end (point-max)))))
98
99;;; lpr.el ends here
diff --git a/lisp/macros.el b/lisp/macros.el
index 76f1f6fe728..4cd6a34ebe8 100644
--- a/lisp/macros.el
+++ b/lisp/macros.el
@@ -1,4 +1,5 @@
1;; Non-primitive commands for keyboard macros. 1;;; macros.el --- non-primitive commands for keyboard macros.
2
2;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc. 3;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
3 4
4;; This file is part of GNU Emacs. 5;; This file is part of GNU Emacs.
@@ -173,3 +174,5 @@ and then select the region of un-tablified names and use
173 174
174;;;###autoload 175;;;###autoload
175(define-key ctl-x-map "q" 'kbd-macro-query) 176(define-key ctl-x-map "q" 'kbd-macro-query)
177
178;;; macros.el ends here
diff --git a/lisp/mail/mail-utils.el b/lisp/mail/mail-utils.el
index b25edf5cb5e..a7d9ef9c3b3 100644
--- a/lisp/mail/mail-utils.el
+++ b/lisp/mail/mail-utils.el
@@ -1,4 +1,5 @@
1;; Utility functions used both by rmail and rnews 1;;; mail-utils.el --- utility functions used both by rmail and rnews
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.
@@ -200,3 +201,4 @@ If third arg ALL is non-nil, concatenate all such fields with commas between."
200 201
201(provide 'mail-utils) 202(provide 'mail-utils)
202 203
204;;; mail-utils.el ends here
diff --git a/lisp/mail/mailabbrev.el b/lisp/mail/mailabbrev.el
index 056395bc8ac..71077a1760e 100644
--- a/lisp/mail/mailabbrev.el
+++ b/lisp/mail/mailabbrev.el
@@ -1,4 +1,5 @@
1;;; Abbrev-expansion of mail aliases. 1;;; mailabbrev.el --- abbrev-expansion of mail aliases.
2
2;;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc. 3;;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc.
3;;; Created: 19 oct 90, Jamie Zawinski <jwz@lucid.com> 4;;; Created: 19 oct 90, Jamie Zawinski <jwz@lucid.com>
4;;; Modified: 5 apr 92, Roland McGrath <roland@gnu.ai.mit.edu> 5;;; Modified: 5 apr 92, Roland McGrath <roland@gnu.ai.mit.edu>
@@ -613,3 +614,5 @@ end of line."
613 614
614 (t ; v19 615 (t ; v19
615 (fmakunbound 'expand-mail-aliases))) 616 (fmakunbound 'expand-mail-aliases)))
617
618;;; mailabbrev.el ends here
diff --git a/lisp/mail/mailalias.el b/lisp/mail/mailalias.el
index 2765bd561f0..e0b44601b9e 100644
--- a/lisp/mail/mailalias.el
+++ b/lisp/mail/mailalias.el
@@ -1,4 +1,5 @@
1;; Expand mailing address aliases defined in ~/.mailrc. 1;;; mailalias.el --- expand mailing address aliases defined in ~/.mailrc.
2
2;; Copyright (C) 1985, 1987 Free Software Foundation, Inc. 3;; Copyright (C) 1985, 1987 Free Software Foundation, Inc.
3 4
4;; This file is part of GNU Emacs. 5;; This file is part of GNU Emacs.
@@ -167,3 +168,5 @@ DEFINITION can be one or more mail addresses separated by commas."
167 (if tem 168 (if tem
168 (rplacd tem definition) 169 (rplacd tem definition)
169 (setq mail-aliases (cons (cons name definition) mail-aliases))))) 170 (setq mail-aliases (cons (cons name definition) mail-aliases)))))
171
172;;; mailalias.el ends here
diff --git a/lisp/mail/mailpost.el b/lisp/mail/mailpost.el
index 326d5092575..e9d96167581 100644
--- a/lisp/mail/mailpost.el
+++ b/lisp/mail/mailpost.el
@@ -1,6 +1,5 @@
1;; 1;;; post.el --- RMAIL coupler to /usr/uci/post mailer
2;; P O S T . E L 2
3;;
4;; Yet another mail interface. this for the rmail system to provide 3;; Yet another mail interface. this for the rmail system to provide
5;; the missing sendmail interface on systems without /usr/lib/sendmail, 4;; the missing sendmail interface on systems without /usr/lib/sendmail,
6;; but with /usr/uci/post. 5;; but with /usr/uci/post.
@@ -90,3 +89,5 @@ site-init."
90 (kill-buffer tembuf) 89 (kill-buffer tembuf)
91 (if (bufferp errbuf) 90 (if (bufferp errbuf)
92 (switch-to-buffer errbuf))))) 91 (switch-to-buffer errbuf)))))
92
93;;; mailpost.el ends here
diff --git a/lisp/makesum.el b/lisp/makesum.el
index 4274e900e7e..99b0452bd16 100644
--- a/lisp/makesum.el
+++ b/lisp/makesum.el
@@ -1,4 +1,5 @@
1;; Generate key binding summary for Emacs 1;;; makesum.el --- generate key binding summary 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.
@@ -99,3 +100,5 @@ Previous contents of that buffer are killed first."
99 (forward-line 1) 100 (forward-line 1)
100 (setq lines (cdr lines)))) 101 (setq lines (cdr lines))))
101 (goto-char (- (point-max) from-end)))) 102 (goto-char (- (point-max) from-end))))
103
104;;; makesum.el ends here
diff --git a/lisp/man.el b/lisp/man.el
index 790c8a0c1bd..c2e0d45ac3f 100644
--- a/lisp/man.el
+++ b/lisp/man.el
@@ -1,4 +1,5 @@
1;; Read in and display parts of Unix manual. 1;;; man.el --- read in and display parts of Unix manual.
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.
@@ -165,3 +166,5 @@ where SECTION is the desired section of the manual, as in \"tty(4)\"."
165 (if (equal (substring name -2) ".z") 166 (if (equal (substring name -2) ".z")
166 (call-process "pcat" nil t nil name) 167 (call-process "pcat" nil t nil name)
167 (insert-file-contents name)))) 168 (insert-file-contents name))))
169
170;;; man.el ends here
diff --git a/lisp/map-ynp.el b/lisp/map-ynp.el
index ddf27bdc839..5f4571f4ab8 100644
--- a/lisp/map-ynp.el
+++ b/lisp/map-ynp.el
@@ -1,4 +1,5 @@
1;;; map-ynp.el -- General-purpose boolean question-asker. 1;;; map-ynp.el --- General-purpose boolean question-asker.
2
2;;; Copyright (C) 1991, 1992 Free Software Foundation, Inc. 3;;; Copyright (C) 1991, 1992 Free Software Foundation, Inc.
3;;; Written by Roland McGrath. 4;;; Written by Roland McGrath.
4;;; 5;;;
@@ -149,3 +150,5 @@ Returns the number of actions taken."
149 (message "") 150 (message "")
150 ;; Return the number of actions that were taken. 151 ;; Return the number of actions that were taken.
151 actions)) 152 actions))
153
154;;; map-ynp.el ends here
diff --git a/lisp/medit.el b/lisp/medit.el
index d42e67a26a3..9c08ccb2b9d 100644
--- a/lisp/medit.el
+++ b/lisp/medit.el
@@ -1,4 +1,6 @@
1;; Lisp interface between GNU Emacs and MEDIT package. Emacs under MDL. 1;;; medit.el --- Lisp interface between GNU Emacs and MEDIT package.
2
3;; Emacs under MDL.
2;; Copyright (C) 1985 Free Software Foundation, Inc. 4;; Copyright (C) 1985 Free Software Foundation, Inc.
3;; Principal author K. Shane Hartman 5;; Principal author K. Shane Hartman
4 6
@@ -113,4 +115,4 @@ Like Mim mode, plus these special commands:
113 115
114(mim-mode) 116(mim-mode)
115 117
116 118;;; medit.el ends here
diff --git a/lisp/mhspool.el b/lisp/mhspool.el
index f9ad802ec56..49ed3379094 100644
--- a/lisp/mhspool.el
+++ b/lisp/mhspool.el
@@ -1,4 +1,5 @@
1;;; MH folder access using NNTP for GNU Emacs 1;;; mhspool.el --- MH folder access using NNTP for GNU Emacs
2
2;; Copyright (C) 1988, 1989 Fujitsu Laboratories LTD. 3;; Copyright (C) 1988, 1989 Fujitsu Laboratories LTD.
3;; Copyright (C) 1988, 1989, 1990 Masanobu UMEDA 4;; Copyright (C) 1988, 1989, 1990 Masanobu UMEDA
4;; $Header: mhspool.el,v 1.5 90/03/23 13:25:23 umerin Locked $ 5;; $Header: mhspool.el,v 1.5 90/03/23 13:25:23 umerin Locked $
@@ -403,3 +404,5 @@ If the stream is opened, return T, otherwise return NIL."
403 )) 404 ))
404 405
405(provide 'mhspool) 406(provide 'mhspool)
407
408;;; mhspool.el ends here
diff --git a/lisp/mim-mode.el b/lisp/mim-mode.el
index b7aae0a6d19..1c0dec2ed59 100644
--- a/lisp/mim-mode.el
+++ b/lisp/mim-mode.el
@@ -1,4 +1,5 @@
1;; Mim (MDL in MDL) mode. 1;;; mim-mode.el --- Mim (MDL in MDL) mode.
2
2;; Copyright (C) 1985 Free Software Foundation, Inc. 3;; Copyright (C) 1985 Free Software Foundation, Inc.
3;; Principal author K. Shane Hartman 4;; Principal author K. Shane Hartman
4 5
@@ -840,3 +841,4 @@ You need type only enough of the name to be unambiguous."
840 841
841(provide 'mim-mode) 842(provide 'mim-mode)
842 843
844;;; mim-mode.el ends here
diff --git a/lisp/mim-syntax.el b/lisp/mim-syntax.el
index c9a95b50f2f..a9ab16ca25d 100644
--- a/lisp/mim-syntax.el
+++ b/lisp/mim-syntax.el
@@ -1,4 +1,5 @@
1;; Syntax checker for Mim (MDL). 1;;; mim-syntax.el --- syntax checker for Mim (MDL).
2
2;; Copyright (C) 1985 Free Software Foundation, Inc. 3;; Copyright (C) 1985 Free Software Foundation, Inc.
3;; Principal author K. Shane Hartman 4;; Principal author K. Shane Hartman
4 5
@@ -87,5 +88,4 @@ Answers correct or incorrect, cannot point out the error context."
87 (message "Syntax correct") 88 (message "Syntax correct")
88 (error "Syntax incorrect"))))) 89 (error "Syntax incorrect")))))
89 90
90 91;;; mim-syntax.el ends here
91
diff --git a/lisp/misc.el b/lisp/misc.el
index db7b3f223b5..3eea6ec22bb 100644
--- a/lisp/misc.el
+++ b/lisp/misc.el
@@ -1,4 +1,5 @@
1;; Basic editing commands for Emacs 1;;; misc.el --- basic editing commands for Emacs
2
2;; Copyright (C) 1989 Free Software Foundation, Inc. 3;; Copyright (C) 1989 Free Software Foundation, Inc.
3 4
4;; This file is part of GNU Emacs. 5;; This file is part of GNU Emacs.
@@ -49,3 +50,5 @@ The characters copied are inserted in the buffer before point."
49 (min (save-excursion (end-of-line) (point)) 50 (min (save-excursion (end-of-line) (point))
50 (+ n (point))))))) 51 (+ n (point)))))))
51 (insert string))) 52 (insert string)))
53
54;;; misc.el ends here
diff --git a/lisp/mouse.el b/lisp/mouse.el
index 41940cb6221..94d0e4ba5f1 100644
--- a/lisp/mouse.el
+++ b/lisp/mouse.el
@@ -1,4 +1,5 @@
1;;; Window system-independent mouse support. 1;;; mouse.el --- window system-independent mouse support.
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.
@@ -455,3 +456,4 @@ This does not delete the region; it acts like \\[kill-ring-save]."
455 456
456(provide 'mouse) 457(provide 'mouse)
457 458
459;;; mouse.el ends here
diff --git a/lisp/netunam.el b/lisp/netunam.el
index 44d828729ef..8bfad991cd4 100644
--- a/lisp/netunam.el
+++ b/lisp/netunam.el
@@ -1,4 +1,5 @@
1;; HP-UX RFA Commands 1;;; netunam.el --- HP-UX RFA Commands
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.
@@ -150,3 +151,5 @@ NODE is the network node for the remote machine."
150 (delete-char -1) 151 (delete-char -1)
151 (setq rfa-password-accumulator 152 (setq rfa-password-accumulator
152 (substring rfa-password-accumulator 0 -1))) 153 (substring rfa-password-accumulator 0 -1)))
154
155;;; netunam.el ends here
diff --git a/lisp/nnspool.el b/lisp/nnspool.el
index 0cfa097d2f5..15afc80504a 100644
--- a/lisp/nnspool.el
+++ b/lisp/nnspool.el
@@ -1,4 +1,5 @@
1;;; Spool access using NNTP for GNU Emacs 1;;; nnspool.el --- spool access using NNTP for GNU Emacs
2
2;; Copyright (C) 1988, 1989 Fujitsu Laboratories LTD. 3;; Copyright (C) 1988, 1989 Fujitsu Laboratories LTD.
3;; Copyright (C) 1988, 1989, 1990 Masanobu UMEDA 4;; Copyright (C) 1988, 1989, 1990 Masanobu UMEDA
4;; $Header: nnspool.el,v 1.10 90/03/23 13:25:25 umerin Locked $ 5;; $Header: nnspool.el,v 1.10 90/03/23 13:25:25 umerin Locked $
@@ -373,3 +374,5 @@ If the stream is opened, return T, otherwise return NIL."
373 )) 374 ))
374 375
375(provide 'nnspool) 376(provide 'nnspool)
377
378;;; nnspool.el ends here
diff --git a/lisp/nntp.el b/lisp/nntp.el
index dd33902be77..d1e0dd2fbe4 100644
--- a/lisp/nntp.el
+++ b/lisp/nntp.el
@@ -1,4 +1,5 @@
1;;; NNTP (RFC977) Interface for GNU Emacs 1;;; nntp.el --- NNTP (RFC977) Interface 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: nntp.el,v 3.10 90/03/23 13:25:27 umerin Locked $ 5;; $Header: nntp.el,v 3.10 90/03/23 13:25:27 umerin Locked $
@@ -666,3 +667,4 @@ defining this function as macro."
666 667
667(provide 'nntp) 668(provide 'nntp)
668 669
670;;; nntp.el ends here
diff --git a/lisp/novice.el b/lisp/novice.el
index 7a3898014ef..c5374e8b8be 100644
--- a/lisp/novice.el
+++ b/lisp/novice.el
@@ -1,4 +1,5 @@
1;; Handling of disabled commands ("novice mode") for Emacs. 1;;; novice.el --- handling of disabled commands ("novice mode") for Emacs.
2
2;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc. 3;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
3 4
4;; This file is part of GNU Emacs. 5;; This file is part of GNU Emacs.
@@ -109,3 +110,4 @@ to future sessions."
109 (insert "(put '" (symbol-name command) " 'disabled t)\n") 110 (insert "(put '" (symbol-name command) " 'disabled t)\n")
110 (save-buffer))) 111 (save-buffer)))
111 112
113;;; novice.el ends here
diff --git a/lisp/options.el b/lisp/options.el
index 3abd02910ba..86e8d493032 100644
--- a/lisp/options.el
+++ b/lisp/options.el
@@ -1,4 +1,5 @@
1;; Edit Options command for Emacs. 1;;; options.el --- edit Options command 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.
@@ -123,3 +124,4 @@ For convenience, the characters \\[backward-paragraph] and \\[forward-paragraph]
123 (kill-sexp 1) 124 (kill-sexp 1)
124 (prin1 (symbol-value var) (current-buffer))))) 125 (prin1 (symbol-value var) (current-buffer)))))
125 126
127;;; options.el ends here
diff --git a/lisp/paths.el b/lisp/paths.el
index 50a5880eac3..074b979d558 100644
--- a/lisp/paths.el
+++ b/lisp/paths.el
@@ -1,4 +1,5 @@
1;; Define pathnames for use by various Emacs commands. 1;;; paths.el --- define pathnames for use by various Emacs commands.
2
2;; Copyright (C) 1986, 1988 Free Software Foundation, Inc. 3;; Copyright (C) 1986, 1988 Free Software Foundation, Inc.
3 4
4;; This file is part of GNU Emacs. 5;; This file is part of GNU Emacs.
@@ -165,3 +166,5 @@ Append a section-number or section-name to get a directory name.")
165 "~/abbrev.def" 166 "~/abbrev.def"
166 "~/.abbrev_defs") 167 "~/.abbrev_defs")
167 "*Default name of file to read abbrevs from.") 168 "*Default name of file to read abbrevs from.")
169
170;;; paths.el ends here
diff --git a/lisp/play/life.el b/lisp/play/life.el
index 0aceb065609..3ce585d9f16 100644
--- a/lisp/play/life.el
+++ b/lisp/play/life.el
@@ -1,4 +1,5 @@
1;; Conway's `Life' for GNU Emacs 1;;; life.el --- John Horton Conway's `Life' game for GNU Emacs
2
2;; Copyright (C) 1988 Free Software Foundation, Inc. 3;; Copyright (C) 1988 Free Software Foundation, Inc.
3;; Contributed by Kyle Jones, talos!kjones@uunet.uu.net 4;; Contributed by Kyle Jones, talos!kjones@uunet.uu.net
4 5
@@ -273,3 +274,4 @@ generations (this defaults to 1)."
273 274
274(provide 'life) 275(provide 'life)
275 276
277;;; life.el ends here
diff --git a/lisp/play/meese.el b/lisp/play/meese.el
index 5ba9dfd2ad2..5bbe3b1a07b 100644
--- a/lisp/play/meese.el
+++ b/lisp/play/meese.el
@@ -1,3 +1,5 @@
1;; meese.el --- protect the impressionable young minds of America...NOT!
2
1(defun protect-innocence-hook () 3(defun protect-innocence-hook ()
2 (if (and (equal (file-name-nondirectory buffer-file-name) "sex.6") 4 (if (and (equal (file-name-nondirectory buffer-file-name) "sex.6")
3 (not (y-or-n-p "Are you over 18? "))) 5 (not (y-or-n-p "Are you over 18? ")))
@@ -12,3 +14,5 @@
12 14
13(or (memq 'protect-innocence-hook find-file-hooks) 15(or (memq 'protect-innocence-hook find-file-hooks)
14 (setq find-file-hooks (cons 'protect-innocence-hook find-file-hooks))) 16 (setq find-file-hooks (cons 'protect-innocence-hook find-file-hooks)))
17
18;;; meese.el ends here
diff --git a/lisp/play/mpuz.el b/lisp/play/mpuz.el
index f4d622ad819..01b44c1d356 100644
--- a/lisp/play/mpuz.el
+++ b/lisp/play/mpuz.el
@@ -1,4 +1,5 @@
1;;; Multiplication puzzle for GNU Emacs 1;;; mpuz.el --- multiplication puzzle for GNU Emacs
2
2;;; by Philippe Schnoebelen <phs@lifia.imag.fr> 3;;; by Philippe Schnoebelen <phs@lifia.imag.fr>
3;;; Last modified on 11 Nov 1990 4;;; Last modified on 11 Nov 1990
4;;; Copyright (C) 1990 Free Software Foundation, Inc. 5;;; Copyright (C) 1990 Free Software Foundation, Inc.
@@ -444,5 +445,4 @@ You may abort a game by hitting \\[keyboard-quit]."
444 (setq list (cons digit list)))) 445 (setq list (cons digit list))))
445 (mapcar 'mpuz-correct-guess list))) 446 (mapcar 'mpuz-correct-guess list)))
446 447
447;;; End of mult-puzzle 448;;; mpuz.el ends here
448
diff --git a/lisp/progmodes/modula2.el b/lisp/progmodes/modula2.el
index 24f5225260a..19c7249b40a 100644
--- a/lisp/progmodes/modula2.el
+++ b/lisp/progmodes/modula2.el
@@ -1,4 +1,5 @@
1; Modula-2 editing support package 1;;; modula2.el --- Modula-2 editing support package
2
2; Author Mick Jordan 3; Author Mick Jordan
3; amended Peter Robinson 4; amended Peter Robinson
4; ported to GNU Michael Schmidt 5; ported to GNU Michael Schmidt
@@ -437,3 +438,5 @@ FROM SysStreams IMPORT sysIn, sysOut, sysErr;
437 ((string-equal (substring (buffer-name) -3) ".md") 438 ((string-equal (substring (buffer-name) -3) ".md")
438 (find-file-other-window 439 (find-file-other-window
439 (concat (substring (buffer-name) 0 -3) ".mi"))))) 440 (concat (substring (buffer-name) 0 -3) ".mi")))))
441
442;;; modula2.el ends here
diff --git a/lisp/progmodes/prolog.el b/lisp/progmodes/prolog.el
index 9220495bbf8..ddbbf804962 100644
--- a/lisp/progmodes/prolog.el
+++ b/lisp/progmodes/prolog.el
@@ -1,4 +1,5 @@
1;; Major mode for editing Prolog, and for running Prolog under Emacs 1;;; prolog.el --- major mode for editing and running Prolog under Emacs
2
2;; Copyright (C) 1986, 1987 Free Software Foundation, Inc. 3;; Copyright (C) 1986, 1987 Free Software Foundation, Inc.
3;; Author Masanobu UMEDA (umerin@flab.flab.fujitsu.junet) 4;; Author Masanobu UMEDA (umerin@flab.flab.fujitsu.junet)
4 5
@@ -256,3 +257,5 @@ If COMPILE (prefix arg) is not nil, use compile mode rather than consult mode."
256 (interactive "P\nr") 257 (interactive "P\nr")
257 (prolog-consult-region compile beg end) 258 (prolog-consult-region compile beg end)
258 (switch-to-buffer "*prolog*")) 259 (switch-to-buffer "*prolog*"))
260
261;;; prolog.el ends here
diff --git a/lisp/rect.el b/lisp/rect.el
index 06a55a295a6..343143e10cb 100644
--- a/lisp/rect.el
+++ b/lisp/rect.el
@@ -1,4 +1,5 @@
1;; Rectangle functions for GNU Emacs. 1;;; rect.el --- rectangle functions for GNU 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.
@@ -210,3 +211,5 @@ When called from a program, requires two args which specify the corners."
210 (delete-char -1) 211 (delete-char -1)
211 (indent-to aftercol) 212 (indent-to aftercol)
212 (backward-char (- aftercol column)))) 213 (backward-char (- aftercol column))))
214
215;;; rect.el ends here
diff --git a/lisp/textmodes/nroff-mode.el b/lisp/textmodes/nroff-mode.el
index 35bf4213615..4806273cab8 100644
--- a/lisp/textmodes/nroff-mode.el
+++ b/lisp/textmodes/nroff-mode.el
@@ -1,4 +1,4 @@
1;; GNU Emacs major mode for editing nroff source 1;;; nroff-mode.el --- GNU Emacs major mode for editing nroff source
2;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. 2;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
3 3
4;; This file is part of GNU Emacs. 4;; This file is part of GNU Emacs.
@@ -17,8 +17,6 @@
17;; along with GNU Emacs; see the file COPYING. If not, write to 17;; along with GNU Emacs; see the file COPYING. If not, write to
18;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 18;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19 19
20
21
22(defvar nroff-mode-abbrev-table nil 20(defvar nroff-mode-abbrev-table nil
23 "Abbrev table used while in nroff mode.") 21 "Abbrev table used while in nroff mode.")
24 22
@@ -34,6 +32,7 @@
34 (define-key nroff-mode-map "\en" 'forward-text-line) 32 (define-key nroff-mode-map "\en" 'forward-text-line)
35 (define-key nroff-mode-map "\ep" 'backward-text-line))) 33 (define-key nroff-mode-map "\ep" 'backward-text-line)))
36 34
35;;;###autoload
37(defun nroff-mode () 36(defun nroff-mode ()
38 "Major mode for editing text intended for nroff to format. 37 "Major mode for editing text intended for nroff to format.
39\\{nroff-mode-map} 38\\{nroff-mode-map}
@@ -200,3 +199,4 @@ turns it on iff arg is positive, otherwise off."
200 (cond ((null arg) (null nroff-electric-mode)) 199 (cond ((null arg) (null nroff-electric-mode))
201 (t (> (prefix-numeric-value arg) 0))))) 200 (t (> (prefix-numeric-value arg) 0)))))
202 201
202;;; nroff-mode.el ends here
diff --git a/lisp/textmodes/ooutline.el b/lisp/textmodes/ooutline.el
index 33b716d8120..3580c1e54b5 100644
--- a/lisp/textmodes/ooutline.el
+++ b/lisp/textmodes/ooutline.el
@@ -1,4 +1,5 @@
1;; Outline mode commands for Emacs 1;;; outline.el --- outline mode commands 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.
@@ -395,3 +396,4 @@ and return that position or nil if it cannot be found."
395 nil 396 nil
396 (point)))) 397 (point))))
397 398
399;;; outline.el ends here
diff --git a/lisp/textmodes/page-ext.el b/lisp/textmodes/page-ext.el
index c17fa187551..13f331c4312 100644
--- a/lisp/textmodes/page-ext.el
+++ b/lisp/textmodes/page-ext.el
@@ -1,6 +1,5 @@
1;;;; page-ext.el 1;;; page-ext.el --- page handling commands
2 2
3;;; Page handling commands
4;;; by Robert J. Chassell 3;;; by Robert J. Chassell
5 4
6;;; You may use these commands to handle an address list or other 5;;; You may use these commands to handle an address list or other
@@ -742,4 +741,5 @@ to the same line in the pages buffer."
742 (make-local-variable 'pages-pos-list) 741 (make-local-variable 'pages-pos-list)
743 (make-local-variable 'pages-directory-buffer-narrowing-p)) 742 (make-local-variable 'pages-directory-buffer-narrowing-p))
744 743
745;;;;;;;;;;;;;;;; end of page-ext.el ;;;;;;;;;;;;;;;; 744;;; page-ext.el ends here
745
diff --git a/lisp/textmodes/page.el b/lisp/textmodes/page.el
index 576e23a7560..935e19bdba4 100644
--- a/lisp/textmodes/page.el
+++ b/lisp/textmodes/page.el
@@ -1,4 +1,5 @@
1;; Page motion commands for emacs. 1;;; page.el --- page motion 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.
@@ -89,6 +90,7 @@ thus showing a page other than the one point was originally in."
89 (if (and (eolp) (not (bobp))) 90 (if (and (eolp) (not (bobp)))
90 (forward-line 1)) 91 (forward-line 1))
91 (point))))) 92 (point)))))
93(put 'narrow-to-page 'disabled t)
92 94
93(defun count-lines-page () 95(defun count-lines-page ()
94 "Report number of lines on current page, and how many are before or after point." 96 "Report number of lines on current page, and how many are before or after point."
@@ -123,3 +125,5 @@ thus showing a page other than the one point was originally in."
123 (message "Page %d, line %d" 125 (message "Page %d, line %d"
124 count 126 count
125 (1+ (count-lines (point) opoint))))))) 127 (1+ (count-lines (point) opoint)))))))
128
129;;; page.el ends here
diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el
index 55b9fc6e45a..2235c0b903a 100644
--- a/lisp/textmodes/paragraphs.el
+++ b/lisp/textmodes/paragraphs.el
@@ -1,4 +1,5 @@
1;; Paragraph and sentence parsing. 1;;; paragraphs.el --- paragraph and sentence parsing.
2
2;; Copyright (C) 1985-1991 Free Software Foundation, Inc. 3;; Copyright (C) 1985-1991 Free Software Foundation, Inc.
3 4
4;; This file is part of GNU Emacs. 5;; This file is part of GNU Emacs.
@@ -228,3 +229,5 @@ With arg, repeat, or kill forward to Nth end of sentence if negative arg -N."
228 "Interchange this (next) and previous sentence." 229 "Interchange this (next) and previous sentence."
229 (interactive "*p") 230 (interactive "*p")
230 (transpose-subr 'forward-sentence arg)) 231 (transpose-subr 'forward-sentence arg))
232
233;;; paragraphs.el ends here
diff --git a/lisp/textmodes/picture.el b/lisp/textmodes/picture.el
index a72dee496ae..516ccd646de 100644
--- a/lisp/textmodes/picture.el
+++ b/lisp/textmodes/picture.el
@@ -1,4 +1,5 @@
1;; "Picture mode" -- editing using quarter-plane screen model. 1;;; picture.el --- "Picture mode" -- editing using quarter-plane screen model.
2
2;; Copyright (C) 1985 Free Software Foundation, Inc. 3;; Copyright (C) 1985 Free Software Foundation, Inc.
3;; Principal author K. Shane Hartman 4;; Principal author K. Shane Hartman
4 5
@@ -559,3 +560,4 @@ With no argument strips whitespace from end of every line in Picture buffer
559 560
560(provide 'picture) 561(provide 'picture)
561 562
563;;; picture.el ends here
diff --git a/lisp/textmodes/refbib.el b/lisp/textmodes/refbib.el
index cba3a2ba0f5..e0eb0614d70 100644
--- a/lisp/textmodes/refbib.el
+++ b/lisp/textmodes/refbib.el
@@ -1,4 +1,5 @@
1;; Convert refer-style bibliographic entries to ones usable by latex bib 1;;; refbib.el --- convert refer-style references to ones usable by Latex bib
2
2;; Copyright (C) 1989 Free Software Foundation, Inc. 3;; Copyright (C) 1989 Free Software Foundation, Inc.
3 4
4;; This file is part of GNU Emacs. 5;; This file is part of GNU Emacs.
@@ -709,3 +710,5 @@ To see this message again, perform
709(message "r2b loaded") 710(message "r2b loaded")
710 711
711(provide 'refer-to-bibtex) 712(provide 'refer-to-bibtex)
713
714;;; refbib.el ends here