aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond1993-03-17 16:56:02 +0000
committerEric S. Raymond1993-03-17 16:56:02 +0000
commitaae56ea7ca8c74e7bb5595b828851aaa9f947792 (patch)
tree464b508b0ece6a20291b838d52ec33305d66a541
parentc7986c187611e2f908263a9ad5f104a8ef78d3dc (diff)
downloademacs-aae56ea7ca8c74e7bb5595b828851aaa9f947792.tar.gz
emacs-aae56ea7ca8c74e7bb5595b828851aaa9f947792.zip
Add standard library headers.
-rw-r--r--lisp/emacs-lisp/levents.el5
-rw-r--r--lisp/emacs-lisp/lisp-mode.el2
-rw-r--r--lisp/emacs-lisp/lmenu.el6
-rw-r--r--lisp/isearch.el9
-rw-r--r--lisp/iso8859-1.el4
-rw-r--r--lisp/mail/rmailsum.el7
-rw-r--r--lisp/mail/vms-pmail.el4
-rw-r--r--lisp/mhspool.el4
-rw-r--r--lisp/mouse.el2
-rw-r--r--lisp/novice.el2
-rw-r--r--lisp/scroll-bar.el2
-rw-r--r--lisp/vc-hooks.el4
12 files changed, 36 insertions, 15 deletions
diff --git a/lisp/emacs-lisp/levents.el b/lisp/emacs-lisp/levents.el
index 1a15e725e73..1c67ba946fb 100644
--- a/lisp/emacs-lisp/levents.el
+++ b/lisp/emacs-lisp/levents.el
@@ -1,4 +1,5 @@
1;; Emulate the Lucid event data type and associated functions. 1;;; levents.el --- emulate the Lucid event data type and associated functions.
2
2;; Copyright (C) 1993 Free Software Foundation, Inc. 3;; Copyright (C) 1993 Free Software Foundation, Inc.
3 4
4;; This file is part of GNU Emacs. 5;; This file is part of GNU Emacs.
@@ -17,7 +18,7 @@
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
20;;; Notes: 21;;; Commentary:
21 22
22;; Things we cannot emulate in Lisp: 23;; Things we cannot emulate in Lisp:
23;; It is not possible to emulate current-mouse-event as a variable, 24;; It is not possible to emulate current-mouse-event as a variable,
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index ca464984613..f56fefedf00 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.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(defvar lisp-mode-syntax-table nil "") 26(defvar lisp-mode-syntax-table nil "")
25(defvar emacs-lisp-mode-syntax-table nil "") 27(defvar emacs-lisp-mode-syntax-table nil "")
26(defvar lisp-mode-abbrev-table nil "") 28(defvar lisp-mode-abbrev-table nil "")
diff --git a/lisp/emacs-lisp/lmenu.el b/lisp/emacs-lisp/lmenu.el
index 9b49c77ff76..0e7e331acb9 100644
--- a/lisp/emacs-lisp/lmenu.el
+++ b/lisp/emacs-lisp/lmenu.el
@@ -1,4 +1,5 @@
1;;; Menubar support. 1;;; lmenu.el --- emulate Lucid's menubar support
2
2;; Copyright (C) 1992, 1993 Free Software Foundation, Inc. 3;; Copyright (C) 1992, 1993 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 23
21;; First, emulate the Lucid menubar support in GNU Emacs 19. 24;; First, emulate the Lucid menubar support in GNU Emacs 19.
22 25
@@ -633,3 +636,4 @@ You can control the text of the menu items by redefining the function
633 636
634(provide 'menubar) 637(provide 'menubar)
635 638
639;;; lmenu.el ends here
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 9fa37e25e09..9605dae20f4 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/07 20:17:27 $|$Revision: 1.23 $ 7;; |$Date: 1993/03/17 15:58:09 $|$Revision: 1.24 $
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.23 1993/03/07 20:17:27 rms Exp eric $ 95;;; $Header: /gd/gnu/emacs/19.0/lisp/RCS/isearch.el,v 1.24 1993/03/17 15:58:09 eric Exp eric $
96;;; $Log: isearch.el,v $ 96;;; $Log: isearch.el,v $
97; Revision 1.24 1993/03/17 15:58:09 eric
98; Add standard library headers.
99;
97; Revision 1.23 1993/03/07 20:17:27 rms 100; Revision 1.23 1993/03/07 20:17:27 rms
98; (isearch-other-meta-char): Call listify-key-sequence. 101; (isearch-other-meta-char): Call listify-key-sequence.
99; (isearch-unread): Don't call it here. 102; (isearch-unread): Don't call it here.
diff --git a/lisp/iso8859-1.el b/lisp/iso8859-1.el
index 4a3c9f9ce1c..7cca9047704 100644
--- a/lisp/iso8859-1.el
+++ b/lisp/iso8859-1.el
@@ -1,4 +1,4 @@
1;; iso8859-1.el --- set up case-conversion and syntax tables for ISO 8859/1 1;;; iso8859-1.el --- set up case-conversion and syntax tables for ISO 8859/1
2 2
3;; Copyright (C) 1988 Free Software Foundation, Inc. 3;; Copyright (C) 1988 Free Software Foundation, Inc.
4 4
@@ -98,3 +98,5 @@
98 (set-standard-case-table (list (car table)))) 98 (set-standard-case-table (list (car table))))
99 99
100(provide 'iso8859-1) 100(provide 'iso8859-1)
101
102;;; iso8859-1.el ends here
diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el
index 7888e9799a0..31aefc63174 100644
--- a/lisp/mail/rmailsum.el
+++ b/lisp/mail/rmailsum.el
@@ -1,4 +1,5 @@
1;; "RMAIL" mail reader for Emacs. Make summary buffers. 1;; rmailsum.el --- make summary buffers for the mail reader
2
2;; Copyright (C) 1985, 1993 Free Software Foundation, Inc. 3;; Copyright (C) 1985, 1993 Free Software Foundation, Inc.
3 4
4;; Maintainer: FSF 5;; Maintainer: FSF
@@ -20,10 +21,14 @@
20;; 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
21;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 23
24;;; Commentary:
25
23;; Extended by Bob Weiner of Motorola 26;; Extended by Bob Weiner of Motorola
24;; Provided all commands from rmail-mode in rmail-summary-mode and made key 27;; Provided all commands from rmail-mode in rmail-summary-mode and made key
25;; bindings in both modes wholly compatible. 28;; bindings in both modes wholly compatible.
26 29
30;;; Code:
31
27;; Entry points for making a summary buffer. 32;; Entry points for making a summary buffer.
28 33
29;; Regenerate the contents of the summary 34;; Regenerate the contents of the summary
diff --git a/lisp/mail/vms-pmail.el b/lisp/mail/vms-pmail.el
index dd6c3b9c385..ab4d1d8c07b 100644
--- a/lisp/mail/vms-pmail.el
+++ b/lisp/mail/vms-pmail.el
@@ -1,4 +1,5 @@
1;;; vms-pmail.el -- use Emacs as the editor within VMS mail. 1;;; vms-pmail.el --- use Emacs as the editor within VMS mail.
2
2;; Copyright (C) 1992 Free Software Foundation, Inc. 3;; Copyright (C) 1992 Free Software Foundation, Inc.
3 4
4;; Author: Roland B Roberts <roberts@nsrl31.nsrl.rochester.edu> 5;; Author: Roland B Roberts <roberts@nsrl31.nsrl.rochester.edu>
@@ -111,3 +112,4 @@ If neither file exists, fails quietly."
111 (if (file-attributes "~/.signature") 112 (if (file-attributes "~/.signature")
112 (insert-file-contents "~/.signature"))))) 113 (insert-file-contents "~/.signature")))))
113 114
115;;; vms-pmail.el ends here
diff --git a/lisp/mhspool.el b/lisp/mhspool.el
index 091c753d1af..514fa6f88e9 100644
--- a/lisp/mhspool.el
+++ b/lisp/mhspool.el
@@ -22,7 +22,7 @@
22;; 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
23;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 23;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 24
25;; Commentary: 25;;; Commentary:
26 26
27;; This package enables you to read mail or articles in MH folders, or 27;; This package enables you to read mail or articles in MH folders, or
28;; articles saved by GNUS. In any case, the file names of mail or 28;; articles saved by GNUS. In any case, the file names of mail or
@@ -35,7 +35,7 @@
35;; no way to specify hierarchical directory now.) In this case, the 35;; no way to specify hierarchical directory now.) In this case, the
36;; name of the NNTP server passed to GNUS must be `:Mail'. 36;; name of the NNTP server passed to GNUS must be `:Mail'.
37 37
38;; Code: 38;;; Code:
39 39
40(require 'nntp) 40(require 'nntp)
41 41
diff --git a/lisp/mouse.el b/lisp/mouse.el
index 17083fc1d8f..aca35b30994 100644
--- a/lisp/mouse.el
+++ b/lisp/mouse.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;;; Utility functions. 26;;; Utility functions.
25 27
26;;; Indent track-mouse like progn. 28;;; Indent track-mouse like progn.
diff --git a/lisp/novice.el b/lisp/novice.el
index 95576d72b07..1590a104861 100644
--- a/lisp/novice.el
+++ b/lisp/novice.el
@@ -21,7 +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;;; Code:
25 25
26;; This function is called (by autoloading) 26;; This function is called (by autoloading)
27;; to handle any disabled command. 27;; to handle any disabled command.
diff --git a/lisp/scroll-bar.el b/lisp/scroll-bar.el
index 7175902bbc6..653537c7140 100644
--- a/lisp/scroll-bar.el
+++ b/lisp/scroll-bar.el
@@ -1,4 +1,4 @@
1;;; scroll-bar.el -- window system-independent scroll bar support. 1;;; scroll-bar.el --- window system-independent scroll bar support.
2 2
3;;; Copyright (C) 1993 Free Software Foundation, Inc. 3;;; Copyright (C) 1993 Free Software Foundation, Inc.
4 4
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el
index 89e66f48ca6..dd38a058a37 100644
--- a/lisp/vc-hooks.el
+++ b/lisp/vc-hooks.el
@@ -1,11 +1,11 @@
1;;; vc-hooks.el -- resident support for version-control 1;;; vc-hooks.el --- resident support for version-control
2 2
3;; Copyright (C) 1992 Free Software Foundation, Inc. 3;; Copyright (C) 1992 Free Software Foundation, Inc.
4 4
5;; Author: Eric S. Raymond <esr@snark.thyrsus.com> 5;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
6;; Version: 5.2 6;; Version: 5.2
7 7
8;; $Id: vc-hooks.el,v 1.9 1993/03/16 20:21:05 eggert Exp eric $ 8;; $Id: vc-hooks.el,v 1.10 1993/03/17 14:01:56 eric Exp eric $
9 9
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11 11