summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric S. Raymond <esr@snark.thyrsus.com>1992-07-16 18:28:42 +0000
committerEric S. Raymond <esr@snark.thyrsus.com>1992-07-16 18:28:42 +0000
commit631443a7f8a9b4c30c7c8f2c88b67c5ac9065686 (patch)
treec779406b670a4368dd594e7082694b3a611e2ecd
parent3ea4c2cf1406e0414f2a5f55e73fe94e85f4705c (diff)
downloademacs-631443a7f8a9b4c30c7c8f2c88b67c5ac9065686.tar.gz
*** empty log message ***
-rw-r--r--lisp/=diary-lib.el8
-rw-r--r--lisp/cmuscheme.el9
-rw-r--r--lisp/completion.el9
-rw-r--r--lisp/progmodes/compile.el5
4 files changed, 29 insertions, 2 deletions
diff --git a/lisp/=diary-lib.el b/lisp/=diary-lib.el
index c8ffe581ebf..0c2808cbc2d 100644
--- a/lisp/=diary-lib.el
+++ b/lisp/=diary-lib.el
@@ -1,4 +1,8 @@
;;; diary.el --- diary functions.
+
+;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
+;; Last-Modified: 30 Jun 1992
+
;; Copyright (C) 1989, 1990 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -18,6 +22,8 @@
;; file named COPYING. Among other things, the copyright notice
;; and this notice must be preserved on all copies.
+;;; Commentary:
+
;; This collection of functions implements the diary features as described
;; in calendar.el.
@@ -27,6 +33,8 @@
;; reingold@cs.uiuc.edu 1304 West Springfield Avenue
;; Urbana, Illinois 61801
+;;; Code:
+
(require 'calendar)
;;;###autoload
diff --git a/lisp/cmuscheme.el b/lisp/cmuscheme.el
index fe20f7e1959..22f4333f787 100644
--- a/lisp/cmuscheme.el
+++ b/lisp/cmuscheme.el
@@ -1,11 +1,16 @@
;;; cmuscheme.el -- Scheme process in a buffer. Adapted from tea.el.
+;; Maintainer: Olin Shivers <olin.shivers@cs.cmu.edu>
+;; Last-Modified: 16 Mar 1992
+
;;; Copyright Olin Shivers (1988)
;;; Please imagine a long, tedious, legalistic 5-page gnu-style copyright
;;; notice appearing here to the effect that you may use this code any
;;; way you like, as long as you don't charge money for it, remove this
;;; notice, or hold me liable for its results.
-;;;
+
+;;; Commentary:
+
;;; This is a customisation of comint-mode (see comint.el)
;;;
;;; Written by Olin Shivers (olin.shivers@cs.cmu.edu). With bits and pieces
@@ -85,6 +90,8 @@
;;; *or* just delete the autoload declaration from scheme.el altogether,
;;; which will allow the autoload in your .emacs to have its say.
+;;; Code:
+
(require 'scheme)
(require 'comint)
diff --git a/lisp/completion.el b/lisp/completion.el
index c62673649bf..c137f65d056 100644
--- a/lisp/completion.el
+++ b/lisp/completion.el
@@ -1,5 +1,10 @@
;;; completion.el --- dynamic word-completion code
+;; Maintainer: bug-completion@think.com
+;; Last-Modified: 30 Jun 1992
+
+;;; Commentary:
+
;;; This is a Completion system for GNU Emacs
;;;
;;; E-Mail:
@@ -260,7 +265,7 @@
;;;
;;;
;;;-----------------------------------------------
-;;; History ::
+;;; Change Log:
;;;-----------------------------------------------
;;; Sometime in '84 Brewster implemented a somewhat buggy version for
;;; Symbolics LISPMs.
@@ -319,6 +324,8 @@
;;; - added backup protection to save-completions-to-file (prevents
;;; problems with disk full errors)
+;;; Code:
+
;;;-----------------------------------------------
;;; Requires
;;; Version
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 9eff8e9e282..a1596617eea 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -1,5 +1,8 @@
;;; compile.el --- run compiler as inferior of Emacs, parse error messages.
+;; Maintainer: FSF
+;; Last-Modified: 05 Jul 1992
+
;;;!!! dup removal is broken.
;; Copyright (C) 1985-1991 Free Software Foundation, Inc.
@@ -21,6 +24,8 @@
;; file named COPYING. Among other things, the copyright notice
;; and this notice must be preserved on all copies.
+;;; Code:
+
;;;###autoload
(defvar compilation-mode-hook nil
"*List of hook functions run by compilation-mode (see `run-hooks').")