aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorEric S. Raymond1993-03-17 17:17:05 +0000
committerEric S. Raymond1993-03-17 17:17:05 +0000
commit76550a57f934a39f067da196e94b10797efca240 (patch)
tree91d58a3fc4388cc3bf00987c0cca050b6bd20baf /lisp
parentaae56ea7ca8c74e7bb5595b828851aaa9f947792 (diff)
downloademacs-76550a57f934a39f067da196e94b10797efca240.tar.gz
emacs-76550a57f934a39f067da196e94b10797efca240.zip
Add standard library headers.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/delsel.el16
-rw-r--r--lisp/emacs-lisp/lmenu.el2
-rw-r--r--lisp/emacs-lisp/profile.el4
-rw-r--r--lisp/hippie-exp.el4
-rw-r--r--lisp/isearch.el9
-rw-r--r--lisp/ls-lisp.el9
-rw-r--r--lisp/mail/rmailmsc.el1
-rw-r--r--lisp/mail/rmailsum.el2
-rw-r--r--lisp/mail/unrmail.el5
-rw-r--r--lisp/play/meese.el3
-rw-r--r--lisp/rlogin.el13
-rw-r--r--lisp/scroll-bar.el2
-rw-r--r--lisp/textmodes/texinfmt.el2
-rw-r--r--lisp/textmodes/texinfo.el2
14 files changed, 52 insertions, 22 deletions
diff --git a/lisp/delsel.el b/lisp/delsel.el
index 29489be8040..0c07d0783d1 100644
--- a/lisp/delsel.el
+++ b/lisp/delsel.el
@@ -1,7 +1,10 @@
1;;; Pending delete selection 1;;; pending-del.el --- pending delete selection
2
2;;; Copyright (C) 1992 Free Software Foundation, Inc. 3;;; Copyright (C) 1992 Free Software Foundation, Inc.
3;;; Created: 14 Jul 92, Matthieu Devin <devin@lucid.com> 4
4;;; Last change 18-Feb-93, devin. 5;; Author: Matthieu Devin <devin@lucid.com>
6;; Created: 14 Jul 92
7;; Last change 18-Feb-93, devin.
5 8
6;;; This file is part of GNU Emacs. 9;;; This file is part of GNU Emacs.
7 10
@@ -19,11 +22,14 @@
19;;; 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
20;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 23;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
21 24
25;;; Commentary:
22 26
23;;; This files makes the active region be pending delete, meaning that 27;;; This file makes the active region be pending delete, meaning that
24;;; text inserted while the region is active will replace the region contents. 28;;; text inserted while the region is active will replace the region contents.
25;;; This is a popular behavior of personal computers text editors. 29;;; This is a popular behavior of personal computers text editors.
26 30
31;;; Code:
32
27(defvar pending-delete-mode t 33(defvar pending-delete-mode t
28 "*Non-nil means Pending Delete mode is enabled. 34 "*Non-nil means Pending Delete mode is enabled.
29In Pending Delete mode, when a region is highlighted, 35In Pending Delete mode, when a region is highlighted,
@@ -110,4 +116,4 @@ In Transient Mark mode, if the mark is active, just deactivate it."
110 116
111(provide 'pending-del) 117(provide 'pending-del)
112 118
113;; End of pending-del.el. 119;;; pending-del.el ends here
diff --git a/lisp/emacs-lisp/lmenu.el b/lisp/emacs-lisp/lmenu.el
index 0e7e331acb9..8d41d541ff6 100644
--- a/lisp/emacs-lisp/lmenu.el
+++ b/lisp/emacs-lisp/lmenu.el
@@ -1,5 +1,7 @@
1;;; lmenu.el --- emulate Lucid's menubar support 1;;; lmenu.el --- emulate Lucid's menubar support
2 2
3;; Keywords: emulations
4
3;; Copyright (C) 1992, 1993 Free Software Foundation, Inc. 5;; Copyright (C) 1992, 1993 Free Software Foundation, Inc.
4 6
5;; This file is part of GNU Emacs. 7;; This file is part of GNU Emacs.
diff --git a/lisp/emacs-lisp/profile.el b/lisp/emacs-lisp/profile.el
index cb2a2bc3a99..119ffb7b585 100644
--- a/lisp/emacs-lisp/profile.el
+++ b/lisp/emacs-lisp/profile.el
@@ -1,4 +1,4 @@
1;;; profile.el -- generate run time measurements of Emacs Lisp functions 1;;; profile.el --- generate run time measurements of Emacs Lisp functions
2 2
3;; Copyright (C) 1992 Free Software Foundation, Inc. 3;; Copyright (C) 1992 Free Software Foundation, Inc.
4 4
@@ -356,4 +356,4 @@ DEF is (symbol-function FUN) ."
356 (interactive) 356 (interactive)
357 (process-send-string profile-timer-process "q\n")) 357 (process-send-string profile-timer-process "q\n"))
358 358
359;; profile.el ends here 359;;; profile.el ends here
diff --git a/lisp/hippie-exp.el b/lisp/hippie-exp.el
index 0080136c8e4..f9c3ba20b23 100644
--- a/lisp/hippie-exp.el
+++ b/lisp/hippie-exp.el
@@ -23,7 +23,7 @@
23;; 23;;
24;; Last change: 4 January 1993 24;; Last change: 4 January 1993
25 25
26;; Commentary: 26;;; Commentary:
27;; 27;;
28;; `hippie-expand' is a single function for a lot of different kinds 28;; `hippie-expand' is a single function for a lot of different kinds
29;; of completions and expansions. Called repeatedly it tries all 29;; of completions and expansions. Called repeatedly it tries all
@@ -125,7 +125,7 @@
125;; how to improve it. 125;; how to improve it.
126;; 126;;
127 127
128;; Code: 128;;; Code:
129 129
130(defvar he-num -1) 130(defvar he-num -1)
131 131
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 9605dae20f4..886bbd9c837 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -1,10 +1,10 @@
1;;; isearch.el ---- incremental search minor mode. 1;;; isearch.el --- incremental search minor mode.
2 2
3;; Copyright (C) 1992 Free Software Foundation, Inc. 3;; Copyright (C) 1992 Free Software Foundation, Inc.
4 4
5;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu> 5;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
6 6
7;; |$Date: 1993/03/17 15:58:09 $|$Revision: 1.24 $ 7;; |$Date: 1993/03/17 16:44:50 $|$Revision: 1.25 $
8 8
9;; This file is not yet part of GNU Emacs, but it is based almost 9;; This file is not yet part of GNU Emacs, but it is based almost
10;; entirely on isearch.el which is part of GNU Emacs. 10;; entirely on isearch.el which is part of GNU Emacs.
@@ -92,8 +92,11 @@
92;;;==================================================================== 92;;;====================================================================
93;;; Change History 93;;; Change History
94 94
95;;; $Header: /gd/gnu/emacs/19.0/lisp/RCS/isearch.el,v 1.24 1993/03/17 15:58:09 eric Exp eric $ 95;;; $Header: /gd/gnu/emacs/19.0/lisp/RCS/isearch.el,v 1.25 1993/03/17 16:44:50 eric Exp eric $
96;;; $Log: isearch.el,v $ 96;;; $Log: isearch.el,v $
97; Revision 1.25 1993/03/17 16:44:50 eric
98; Add standard library headers.
99;
97; Revision 1.24 1993/03/17 15:58:09 eric 100; Revision 1.24 1993/03/17 15:58:09 eric
98; Add standard library headers. 101; Add standard library headers.
99; 102;
diff --git a/lisp/ls-lisp.el b/lisp/ls-lisp.el
index 94b0ed4385e..54da7fdc438 100644
--- a/lisp/ls-lisp.el
+++ b/lisp/ls-lisp.el
@@ -1,4 +1,7 @@
1;;;; directory.el - emulate insert-directory completely in Emacs Lisp 1;;; ls-lisp.el --- emulate insert-directory completely in Emacs Lisp
2
3;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>
4;; Keywords: unix
2 5
3;; Copyright (C) 1992 by Sebastian Kremer <sk@thp.uni-koeln.de> 6;; Copyright (C) 1992 by Sebastian Kremer <sk@thp.uni-koeln.de>
4 7
@@ -45,6 +48,8 @@
45 48
46;; Recognize some more ls switches: R F 49;; Recognize some more ls switches: R F
47 50
51;;; Code:
52
48(defun insert-directory (file &optional switches wildcard full-directory-p) 53(defun insert-directory (file &optional switches wildcard full-directory-p)
49 "Insert directory listing for of FILE, formatted according to SWITCHES. 54 "Insert directory listing for of FILE, formatted according to SWITCHES.
50Leaves point after the inserted text. 55Leaves point after the inserted text.
@@ -227,4 +232,4 @@ The switches that work are: A a c i r S s t u"
227 232
228(provide 'ls-lisp) 233(provide 'ls-lisp)
229 234
230; eof 235;;; ls-lisp.el ends here
diff --git a/lisp/mail/rmailmsc.el b/lisp/mail/rmailmsc.el
index c4407383968..0f850708639 100644
--- a/lisp/mail/rmailmsc.el
+++ b/lisp/mail/rmailmsc.el
@@ -21,6 +21,7 @@
21;; 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
22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23 23
24;;; Code:
24 25
25(defun set-rmail-inbox-list (file-name) 26(defun set-rmail-inbox-list (file-name)
26 "Set the inbox list of the current RMAIL file to FILE-NAME. 27 "Set the inbox list of the current RMAIL file to FILE-NAME.
diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el
index 31aefc63174..bccfc9eb8f4 100644
--- a/lisp/mail/rmailsum.el
+++ b/lisp/mail/rmailsum.el
@@ -1,4 +1,4 @@
1;; rmailsum.el --- make summary buffers for the mail reader 1;;; rmailsum.el --- make summary buffers for the mail reader
2 2
3;; Copyright (C) 1985, 1993 Free Software Foundation, Inc. 3;; Copyright (C) 1985, 1993 Free Software Foundation, Inc.
4 4
diff --git a/lisp/mail/unrmail.el b/lisp/mail/unrmail.el
index b77b445d88f..0850d4be05e 100644
--- a/lisp/mail/unrmail.el
+++ b/lisp/mail/unrmail.el
@@ -1,4 +1,5 @@
1;;; unrmail.el --- convert Rmail files to mailbox files. 1;;; unrmail.el --- convert Rmail files to mailbox files.
2
2;;; Copyright (C) 1992 Free Software Foundation, Inc. 3;;; Copyright (C) 1992 Free Software Foundation, Inc.
3 4
4;; This file is part of GNU Emacs. 5;; This file is part of GNU Emacs.
@@ -17,6 +18,8 @@
17;; along with GNU Emacs; see the file COPYING. If not, write to 18;; along with GNU Emacs; see the file COPYING. If not, write to
18;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 19;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19 20
21;;; Code:
22
20(defvar command-line-args-left) ;Avoid 'free variable' warning 23(defvar command-line-args-left) ;Avoid 'free variable' warning
21 24
22;;;###autoload 25;;;###autoload
@@ -47,3 +50,5 @@ For example, invoke `emacs -batch -f batch-unrmail RMAIL'."
47 (rmail-show-message 1) 50 (rmail-show-message 1)
48 (while (not (rmail-output to-file)) 51 (while (not (rmail-output to-file))
49 (setq message-count (1+ message-count))))) 52 (setq message-count (1+ message-count)))))
53
54;;; unrmail.el ends here
diff --git a/lisp/play/meese.el b/lisp/play/meese.el
index 3159bf6faef..9deb1b69b9c 100644
--- a/lisp/play/meese.el
+++ b/lisp/play/meese.el
@@ -1,4 +1,5 @@
1;; meese.el --- protect the impressionable young minds of America 1;;; meese.el --- protect the impressionable young minds of America
2
2;; This is in the public domain on account of being distributed since 3;; This is in the public domain on account of being distributed since
3;; 1985 or 1986 without a copyright notice. 4;; 1985 or 1986 without a copyright notice.
4 5
diff --git a/lisp/rlogin.el b/lisp/rlogin.el
index 1059dec7836..1f4e8024d25 100644
--- a/lisp/rlogin.el
+++ b/lisp/rlogin.el
@@ -1,5 +1,8 @@
1;;; rlogin.el -- emacs interface using comint routines from CMU 1;;; rlogin.el --- remote login interface
2;;; 2
3;; Maintainer: Noah Friedman <friedman@prep.ai.mit.edu>
4;; Keywords: unix
5
3;;; Copyright (C) 1992 Free Software Foundation, Inc. 6;;; Copyright (C) 1992 Free Software Foundation, Inc.
4;;; 7;;;
5;;; This program is free software; you can redistribute it and/or modify 8;;; This program is free software; you can redistribute it and/or modify
@@ -20,10 +23,11 @@
20;;; 675 Massachusetts Avenue. 23;;; 675 Massachusetts Avenue.
21;;; Cambridge, MA 02139, USA. 24;;; Cambridge, MA 02139, USA.
22;;; 25;;;
23;;; Please send bug reports, etc. to friedman@prep.ai.mit.edu
24 26
25;;; Todo: add directory tracking using ange-ftp style patchnames for the cwd. 27;;; Todo: add directory tracking using ange-ftp style patchnames for the cwd.
26 28
29;;; Code:
30
27(require 'comint) 31(require 'comint)
28 32
29(defvar rlogin-program "rlogin" 33(defvar rlogin-program "rlogin"
@@ -108,4 +112,5 @@ buffer."
108 (send-string nil "\C-d") 112 (send-string nil "\C-d")
109 (delete-char arg))) 113 (delete-char arg)))
110 114
111;; eof 115;;; rlogin.el ends here
116
diff --git a/lisp/scroll-bar.el b/lisp/scroll-bar.el
index 653537c7140..a924295faaa 100644
--- a/lisp/scroll-bar.el
+++ b/lisp/scroll-bar.el
@@ -21,6 +21,8 @@
21;;; 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
22;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 22;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23 23
24;;; Code:
25
24(require 'mouse) 26(require 'mouse)
25 27
26 28
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el
index 45580762b5a..55c606090e8 100644
--- a/lisp/textmodes/texinfmt.el
+++ b/lisp/textmodes/texinfmt.el
@@ -1,4 +1,4 @@
1;;;; texinfmt.el --- convert Texinfo files to Info files. 1;;; texinfmt.el --- convert Texinfo files to Info files.
2 2
3;; Copyright (C) 1985, 1986, 1988, 1990 Free Software Foundation, Inc. 3;; Copyright (C) 1985, 1986, 1988, 1990 Free Software Foundation, Inc.
4 4
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el
index 0427b5582a8..5f502fb85d5 100644
--- a/lisp/textmodes/texinfo.el
+++ b/lisp/textmodes/texinfo.el
@@ -1,4 +1,4 @@
1;;;; texinfo.el ---- major mode for editing Texinfo files. 1;;; texinfo.el --- major mode for editing Texinfo files.
2 2
3;; Copyright (C) 1985, 1988, 1989, 1990 Free Software Foundation, Inc. 3;; Copyright (C) 1985, 1988, 1989, 1990 Free Software Foundation, Inc.
4 4