*** empty log message ***
authorEric S. Raymond <esr@snark.thyrsus.com>
Thu, 16 Jul 1992 04:23:17 +0000 (04:23 +0000)
committerEric S. Raymond <esr@snark.thyrsus.com>
Thu, 16 Jul 1992 04:23:17 +0000 (04:23 +0000)
lisp/mail/mailabbrev.el
lisp/mail/mailpost.el
lisp/makesum.el
lisp/mh-e.el
lisp/mhspool.el
lisp/mouse.el
lisp/netunam.el
lisp/play/meese.el
lisp/play/mpuz.el
lisp/progmodes/modula2.el

index c21a439..e734586 100644 (file)
@@ -1,9 +1,12 @@
+;;; mailabbrev.el --- abbrev-expansion of mail aliases.
+
+;; Author: Jamie Zawinski <jwz@lucid.com>
+;;     Roland McGrath <roland@gnu.ai.mit.edu>
+;; Created: 19 Oct 90
+;; Last-Modified: 13 Jun 92
+
 ;;; ??? We must get papers for this or delete it.
-;;; Abbrev-expansion of mail aliases.
 ;;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc.
-;;; Created: 19 oct 90, Jamie Zawinski <jwz@lucid.com>
-;;; Modified: 5 apr 92, Roland McGrath <roland@gnu.ai.mit.edu>
-;;; Last change 13-jun-92. jwz
 
 ;;; This file is part of GNU Emacs.
 
@@ -21,6 +24,8 @@
 ;;; along with GNU Emacs; see the file COPYING.  If not, write to
 ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 
+;;; Commentary:
+
 ;;; This file ensures that, when the point is in a To:, CC:, BCC:, or From: 
 ;;; field, word-abbrevs are defined for each of your mail aliases.  These
 ;;; aliases will be defined from your .mailrc file (or the file specified by
 ;;;    -  Remove the autoload of build-mail-aliases from the file sendmail.el;
 ;;;    -  Add an autoload of define-mail-alias to loaddefs.el.
 
+;;; Code:
+
 (require 'sendmail)
 
 (defvar mail-abbrev-mailrc-file nil
index e7825d0..4124c1e 100644 (file)
@@ -1,15 +1,20 @@
-;;; post.el --- RMAIL coupler to /usr/uci/post mailer
+;;; mailpost.el --- RMAIL coupler to /usr/uci/post mailer
+
+;; Author: Gary Delp <delp@huey.Udel.Edu>
+;; Maintainer: FSF
+;; Created: 13 Jan 1986
+;; Last-Modified: 30 May 1992
+
+;; This is in the public domain
+;; since Delp distributed it without a copyright notice in 1986.
+
+;;; Commentary:
 
 ;; Yet another mail interface.  this for the rmail system to provide
 ;;  the missing sendmail interface on systems without /usr/lib/sendmail,
 ;;   but with /usr/uci/post.
-;;
-;; created by: Gary Delp <delp at huey.Udel.Edu>
-;;             Mon Jan 13 14:45:12 1986
-;;
-;;
-;; This is in the public domain
-;; since Delp distributed it without a copyright notice in 1986.
+
+;;; Code:
 
 ;; (setq send-mail-function 'post-mail-send-it)
 
index 99b0452..8a7445d 100644 (file)
@@ -1,5 +1,8 @@
 ;;; makesum.el --- generate key binding summary for 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:
 
 ;;;###autoload
 (defun make-command-summary ()
index d33bdf2..b5f7412 100644 (file)
@@ -2,12 +2,12 @@
 
 ;; Author: James Larus <larus@ginger.berkeley.edu>
 ;; Version: 3.7
+;; Last-Modified: 30 Jun 1992
 
 (defvar mh-e-RCS-id)
 (setq mh-e-RCS-id "$Header: /var/home/larus/lib/emacs/RCS/mh-e.el,v 3.1 90/09/28 15:47:58 larus Exp Locker: larus $")
 
 ;;;  Copyright (C) 1985-89 Free Software Foundation
-;;;
 
 ;; GNU Emacs is distributed in the hope that it will be useful,
 ;; but without any warranty.  No author or distributor
index 49ed337..9b33d2e 100644 (file)
@@ -1,8 +1,13 @@
 ;;; mhspool.el --- MH folder access using NNTP for GNU Emacs
 
+;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
+;; Maintainer: FSF
+;; Last-Modified: 16 Mar 1992
+
+;; $Header: mhspool.el,v 1.5 90/03/23 13:25:23 umerin Locked $
+
 ;; Copyright (C) 1988, 1989 Fujitsu Laboratories LTD.
 ;; Copyright (C) 1988, 1989, 1990 Masanobu UMEDA
-;; $Header: mhspool.el,v 1.5 90/03/23 13:25:23 umerin Locked $
 
 ;; This file is part of GNU Emacs.
 
@@ -21,7 +26,7 @@
 ;; file named COPYING.  Among other things, the copyright notice
 ;; and this notice must be preserved on all copies.
 
-(require 'nntp)
+;; Commentary:
 
 ;; This package enables you to read mail or articles in MH folders, or
 ;; articles saved by GNUS. In any case, the file names of mail or
 ;; no way to specify hierarchical directory now.) In this case, the
 ;; name of the NNTP server passed to GNUS must be `:Mail'.
 
+;; Code:
+
+(require 'nntp)
+
 (defvar mhspool-list-directory-switches '("-R")
   "*Switches for `nntp-request-list' to pass to `ls' for gettting file lists.
 One entry should appear on one line. You may need to add `-1' option.")
index b0abd2f..dfbd4fa 100644 (file)
@@ -1,4 +1,9 @@
 ;;; mouse.el --- window system-independent mouse support.
+
+;; Maintainer: FSF
+;; Last-Modified: 10 Jul 1992
+;; Keywords: hardware
+
 ;;; Copyright (C) 1988, 1992 Free Software Foundation, Inc.
 
 ;;; This file is part of GNU Emacs.
index 8bfad99..f6b5918 100644 (file)
@@ -1,5 +1,10 @@
 ;;; netunam.el --- HP-UX RFA Commands
 
+;; Author: CPH <cph@zurich.ai.mit.edu>
+;; Last-Modified: 31 Oct 1989
+
+;;; $Header: netunam.el,v 1.3 88/12/21 16:32:23 GMT cph Exp $
+
 ;; Copyright (C) 1988 Free Software Foundation, Inc.
 
 ;; This file is part of GNU Emacs.
@@ -18,9 +23,7 @@
 ;; along with GNU Emacs; see the file COPYING.  If not, write to
 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 
-;;; Author: cph@zurich.ai.mit.edu
-
-;;; $Header: netunam.el,v 1.3 88/12/21 16:32:23 GMT cph Exp $
+;;; Code:
 
 (defconst rfa-node-directory "/net/"
   "Directory in which RFA network special files are stored.
index 5bbe3b1..826f977 100644 (file)
@@ -1,4 +1,7 @@
-;; meese.el --- protect the impressionable young minds of America...NOT!
+;; meese.el --- protect the impressionable young minds of America
+
+;; Maintainer: FSF
+;; Last-Modified: 20 May 1988
 
 (defun protect-innocence-hook ()
   (if (and (equal (file-name-nondirectory buffer-file-name) "sex.6")
index 01b44c1..4460c9d 100644 (file)
@@ -1,7 +1,9 @@
 ;;; mpuz.el --- multiplication puzzle for GNU Emacs
 
-;;; by Philippe Schnoebelen <phs@lifia.imag.fr>
-;;; Last modified on 11 Nov 1990
+;; Author: Philippe Schnoebelen <phs@lifia.imag.fr>
+;; Last-Modified: 11 Nov 1990
+;; Keywords: games
+
 ;;; Copyright (C) 1990 Free Software Foundation, Inc.
 
 ;; This file is part of GNU Emacs.
@@ -21,6 +23,8 @@
 ;; file named COPYING.  Among other things, the copyright notice
 ;; and this notice must be preserved on all copies.
 
+;;; Code:
+
 (random t)                             ; randomize
 
 (defun mpuz-random (n)
index 51d55d8..d9a2386 100644 (file)
@@ -1,16 +1,19 @@
-;;; 
 ;;; modula2.el --- Modula-2 editing support package
-;; The authors distributed this in without a copyright notice
-;; back in 1988, so it is in the public domain.
 
-; Author Mick Jordan
-; amended Peter Robinson
-; ported to GNU Michael Schmidt
-;;;From: "Michael Schmidt" <michael@pbinfo.UUCP>
-;;;Modified by Tom Perrine <Perrin@LOGICON.ARPA> (TEP)
+;; Author: Michael Schmidt <michael@pbinfo.UUCP> 
+;;     Tom Perrine <Perrin@LOGICON.ARPA>
+;; Last-Modified: 30 May 1992 
 
+;; The authors distributed this without a copyright notice
+;; back in 1988, so it is in the public domain.  The original included
+;; the following credit:
 
-;;; Added by TEP
+;; Author Mick Jordan
+;; amended Peter Robinson
+
+;;; Code:
+
+;;; Added by Tom Perrine (TEP)
 (defvar m2-mode-syntax-table nil
   "Syntax table in use in Modula-2 buffers.")