# HG changeset patch # User Eric S. Raymond # Date 711311322 0 # Node ID c693d56ef36d50803ba21e2b4aec7031bb2b8d61 # Parent 2598c08c91c2bd57844d24acd43fb75e331f2099 *** empty log message *** diff -r 2598c08c91c2 -r c693d56ef36d lisp/=diary-lib.el --- a/lisp/=diary-lib.el Thu Jul 16 17:20:42 1992 +0000 +++ b/lisp/=diary-lib.el Thu Jul 16 18:28:42 1992 +0000 @@ -1,4 +1,8 @@ ;;; diary.el --- diary functions. + +;; Author: Edward M. Reingold +;; 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 -r 2598c08c91c2 -r c693d56ef36d lisp/cmuscheme.el --- a/lisp/cmuscheme.el Thu Jul 16 17:20:42 1992 +0000 +++ b/lisp/cmuscheme.el Thu Jul 16 18:28:42 1992 +0000 @@ -1,11 +1,16 @@ ;;; cmuscheme.el -- Scheme process in a buffer. Adapted from tea.el. +;; Maintainer: Olin Shivers +;; 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 -r 2598c08c91c2 -r c693d56ef36d lisp/completion.el --- a/lisp/completion.el Thu Jul 16 17:20:42 1992 +0000 +++ b/lisp/completion.el Thu Jul 16 18:28:42 1992 +0000 @@ -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 -r 2598c08c91c2 -r c693d56ef36d lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Thu Jul 16 17:20:42 1992 +0000 +++ b/lisp/progmodes/compile.el Thu Jul 16 18:28:42 1992 +0000 @@ -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').")