aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/cmuscheme.el9
-rw-r--r--lisp/completion.el9
-rw-r--r--lisp/diary-lib.el8
-rw-r--r--lisp/progmodes/compile.el5
4 files changed, 29 insertions, 2 deletions
diff --git a/lisp/cmuscheme.el b/lisp/cmuscheme.el
index fe20f7e195..22f4333f78 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 <[email protected]>
+;; 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 ([email protected]). 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 c62673649b..c137f65d05 100644
--- a/lisp/completion.el
+++ b/lisp/completion.el
@@ -1,5 +1,10 @@
;;; completion.el --- dynamic word-completion code
+;; Maintainer: [email protected]
+;; 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/diary-lib.el b/lisp/diary-lib.el
index c8ffe581eb..0c2808cbc2 100644
--- a/lisp/diary-lib.el
+++ b/lisp/diary-lib.el
@@ -1,4 +1,8 @@
;;; diary.el --- diary functions.
+
+;; Author: Edward M. Reingold <[email protected]>
+;; 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 @@
;; [email protected] 1304 West Springfield Avenue
;; Urbana, Illinois 61801
+;;; Code:
+
(require 'calendar)
;;;###autoload
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 9eff8e9e28..a1596617ee 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').")