summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorEric S. Raymond <esr@snark.thyrsus.com>1992-07-15 23:29:10 +0000
committerEric S. Raymond <esr@snark.thyrsus.com>1992-07-15 23:29:10 +0000
commit9b9e4a0d969462615e1fbbc9553f7b1f745ab251 (patch)
tree57afab259be041d2ce223b78f2b68451f6d8186f /lisp
parentc27882f2fda66d2cdd25e2d06d3cffd93ec4d83c (diff)
downloademacs-9b9e4a0d969462615e1fbbc9553f7b1f745ab251.tar.gz
*** empty log message ***
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/profile.el14
-rw-r--r--lisp/emulation/vi.el2
-rw-r--r--lisp/mail/rfc822.el7
-rw-r--r--lisp/progmodes/perl-mode.el11
-rw-r--r--lisp/rect.el4
-rw-r--r--lisp/register.el4
-rw-r--r--lisp/replace.el2
-rw-r--r--lisp/startup.el2
-rw-r--r--lisp/textmodes/nroff-mode.el6
-rw-r--r--lisp/textmodes/paragraphs.el4
-rw-r--r--lisp/textmodes/scribe.el2
11 files changed, 47 insertions, 11 deletions
diff --git a/lisp/emacs-lisp/profile.el b/lisp/emacs-lisp/profile.el
index 1ce056f9123..cdeb8d76f04 100644
--- a/lisp/emacs-lisp/profile.el
+++ b/lisp/emacs-lisp/profile.el
@@ -1,9 +1,10 @@
;;; profile.el -- generate run time measurements of elisp functions
-;;;
-;;; Author: Boaz Ben-Zvi <boaz@lcs.mit.edu>
-;;; Created: Feb. 7, 1992
-;;; Last Modified: Feb. 7, 1992
-;;; Version: 1.0
+
+;; Author: Boaz Ben-Zvi <boaz@lcs.mit.edu>
+;; Created: 7 Feb 1992
+;; Last-Modified: 7 Feb 1992
+;; Version: 1.0
+;; Adapted-By: ESR
;; Copyright (C) 1992 Free Software Foundation, Inc.
@@ -23,6 +24,7 @@
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+;;; Commentary:
; DESCRIPTION:
; ------------
@@ -131,6 +133,8 @@
;}
; -------- end of clip ----------------
+;;; Code:
+
;;;
;;; User modifiable VARIABLES
;;;
diff --git a/lisp/emulation/vi.el b/lisp/emulation/vi.el
index 29012755a4d..fd85e749906 100644
--- a/lisp/emulation/vi.el
+++ b/lisp/emulation/vi.el
@@ -2,7 +2,7 @@
;; Author: Neal Ziring <nz@rsch.wisc.edu>
;; Felix S. T. Wu <wu@crys.wisc.edu>
-;; Last-Modified: 7 Jan 1987
+;; Last-Modified: 07 Jan 1987
;;; Commentary:
diff --git a/lisp/mail/rfc822.el b/lisp/mail/rfc822.el
index 2a67e4e69bb..b6550005f0f 100644
--- a/lisp/mail/rfc822.el
+++ b/lisp/mail/rfc822.el
@@ -1,7 +1,10 @@
;;; rfc822.el --- hairy rfc822 parser for mail and news and suchlike
+;; Author: Richard Mlynarik <mly@eddie.mit.edu>
+;; Maintainer: FSF
+;; Last-Modified: 26 Nov 1990
+
;; Copyright (C) 1986-1990 Free Software Foundation, Inc.
-;; Author Richard Mlynarik.
;; This file is part of GNU Emacs.
@@ -19,6 +22,8 @@
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+;;; Code:
+
;; uses address-start free, throws to address
(defun rfc822-bad-address (reason)
(save-restriction
diff --git a/lisp/progmodes/perl-mode.el b/lisp/progmodes/perl-mode.el
index cb6195dec3b..250a5622bab 100644
--- a/lisp/progmodes/perl-mode.el
+++ b/lisp/progmodes/perl-mode.el
@@ -1,4 +1,10 @@
-;; Perl code editing commands for GNU Emacs
+;;; perl-mode.el --- Perl code editing commands for GNU Emacs
+
+;; Author: William F. Mann
+;; Maintainer: FSF
+;; Last-Modified: 21 Dec 1991
+;; Adapted-By: ESR
+
;; Copyright (C) 1990 William F. Mann
;; Adapted from C code editing commands 'c-mode.el', Copyright 1987 by the
;; Free Software Foundation, under terms of its General Public License.
@@ -21,6 +27,8 @@
;; file named COPYING. Among other things, the copyright notice
;; and this notice must be preserved on all copies.
+;;; Commentary:
+
;; To enter perl-mode automatically, add (autoload 'perl-mode "perl-mode")
;; to your .emacs file and change the first line of your perl script to:
;; #!/usr/bin/perl -- # -*-Perl-*-
@@ -89,6 +97,7 @@
;; [$DB'line#'
;; ] =~ s/;9$//;
+;;; Code:
(defvar perl-mode-abbrev-table nil
"Abbrev table in use in perl-mode buffers.")
diff --git a/lisp/rect.el b/lisp/rect.el
index 343143e10cb..163f1c162ed 100644
--- a/lisp/rect.el
+++ b/lisp/rect.el
@@ -1,5 +1,8 @@
;;; rect.el --- rectangle functions for GNU Emacs.
+;; Maintainer: FSF
+;; Last-Modified: 9 May 1991
+
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -18,6 +21,7 @@
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+;;; Code:
(defun operate-on-rectangle (function start end coerce-tabs)
"Call FUNCTION for each line of rectangle with corners at START, END.
diff --git a/lisp/register.el b/lisp/register.el
index abf5d97d656..d1870d95bee 100644
--- a/lisp/register.el
+++ b/lisp/register.el
@@ -1,5 +1,8 @@
;;; register.el --- register commands for Emacs.
+;; Maintainer: FSF
+;; Last-Modified: 9 Jul 1992
+
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -18,6 +21,7 @@
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+;;; Code:
(defvar register-alist nil
"Alist of elements (NAME . CONTENTS), one for each Emacs register.
diff --git a/lisp/replace.el b/lisp/replace.el
index 89de9f7f59b..df34fe4fabf 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -1,7 +1,7 @@
;;; replace.el --- replace commands for Emacs.
;; Maintainer: FSF
-;; Last-Modified: 9 Jul 1992
+;; Last-Modified: 09 Jul 1992
;; Copyright (C) 1985, 86, 87, 88, 89, 90, 91, 92 Free Software Foundation, Inc.
diff --git a/lisp/startup.el b/lisp/startup.el
index e8896ea01a9..2571f14abdf 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -1,7 +1,7 @@
;;; startup.el --- process Emacs shell arguments
;; Maintainer: FSF
-;; Last-Modified: 9 Jul 1992
+;; Last-Modified: 09 Jul 1992
;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
diff --git a/lisp/textmodes/nroff-mode.el b/lisp/textmodes/nroff-mode.el
index 4806273cab8..26d82a2f793 100644
--- a/lisp/textmodes/nroff-mode.el
+++ b/lisp/textmodes/nroff-mode.el
@@ -1,4 +1,8 @@
;;; nroff-mode.el --- GNU Emacs major mode for editing nroff source
+
+;; Maintainer: FSF
+;; Last-Modified: 9 May 1991
+
;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -17,6 +21,8 @@
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+;;; Code:
+
(defvar nroff-mode-abbrev-table nil
"Abbrev table used while in nroff mode.")
diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el
index 79a07781a33..09678f0d8b6 100644
--- a/lisp/textmodes/paragraphs.el
+++ b/lisp/textmodes/paragraphs.el
@@ -1,5 +1,8 @@
;;; paragraphs.el --- paragraph and sentence parsing.
+;; Maintainer: FSF
+;; Last-Modified: 13 May 1991
+
;; Copyright (C) 1985-1991 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -18,6 +21,7 @@
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+;;; Code:
(defconst paragraph-start "^[ \t\n\f]" "\
*Regexp for beginning of a line that starts OR separates paragraphs.")
diff --git a/lisp/textmodes/scribe.el b/lisp/textmodes/scribe.el
index d722989ebdf..1765d91a153 100644
--- a/lisp/textmodes/scribe.el
+++ b/lisp/textmodes/scribe.el
@@ -1,7 +1,7 @@
;;; scribe.el --- scribe mode, and its idiosyncratic commands.
;; Maintainer: FSF
-;; Last-Modified: 9 May 1991
+;; Last-Modified: 09 May 1991
;; Copyright (C) 1985 Free Software Foundation, Inc.