summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/copyright.el2
-rw-r--r--lisp/emacs-lisp/profile.el4
-rw-r--r--lisp/flow-ctrl.el2
-rw-r--r--lisp/isearch.el63
-rw-r--r--lisp/kermit.el14
-rw-r--r--lisp/progmodes/perl-mode.el2
-rw-r--r--lisp/superyank.el2
-rw-r--r--lisp/textmodes/ispell4.el5
8 files changed, 55 insertions, 39 deletions
diff --git a/lisp/emacs-lisp/copyright.el b/lisp/emacs-lisp/copyright.el
index 8b03a68e01d..2856e17c264 100644
--- a/lisp/emacs-lisp/copyright.el
+++ b/lisp/emacs-lisp/copyright.el
@@ -1,4 +1,4 @@
-;;; upd-copyr.el --- update the copyright notice in a GNU Emacs elisp file
+;;; upd-copyr.el --- update the copyright notice in a GNU Emacs Lisp file
;; Author: Roland McGrath <roland@gnu.ai.mit.edu>
;; Last-Modified: 03 Jun 1991
diff --git a/lisp/emacs-lisp/profile.el b/lisp/emacs-lisp/profile.el
index cdeb8d76f04..dfd853fcb32 100644
--- a/lisp/emacs-lisp/profile.el
+++ b/lisp/emacs-lisp/profile.el
@@ -1,4 +1,4 @@
-;;; profile.el -- generate run time measurements of elisp functions
+;;; profile.el -- generate run time measurements of Emacs Lisp functions
;; Author: Boaz Ben-Zvi <boaz@lcs.mit.edu>
;; Created: 7 Feb 1992
@@ -28,7 +28,7 @@
; DESCRIPTION:
; ------------
-; This program can be used to monitor running time performance of elisp
+; This program can be used to monitor running time performance of Emacs Lisp
; functions. It takes a list of functions and report the real time spent
; inside these functions. It runs a process with a separate timer program.
; Caveat: the C code included with this package requires BSD-compatible
diff --git a/lisp/flow-ctrl.el b/lisp/flow-ctrl.el
index 104aee3ac86..853fac2f6ef 100644
--- a/lisp/flow-ctrl.el
+++ b/lisp/flow-ctrl.el
@@ -21,7 +21,7 @@
;;;
;;;; Terminals that use XON/XOFF flow control can cause problems with
-;;;; GNU Emacs users. This file contains elisp code that makes it
+;;;; GNU Emacs users. This file contains Emacs Lisp code that makes it
;;;; easy for a user to deal with this problem, when using such a
;;;; terminal.
;;;;
diff --git a/lisp/isearch.el b/lisp/isearch.el
index ee50a1424c2..652a4752ba4 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -1,10 +1,10 @@
-;; Incremental search minor mode.
-;; Copyright (C) 1992 Free Software Foundation, Inc.
+;; isearch-mode.el --- incremental search minor mode.
+
+;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
+;; Version: 1.2
+;; Last-Modified: 27 May 1992
-;; LCD Archive Entry:
-;; isearch-mode|Daniel LaLiberte|liberte@cs.uiuc.edu
-;; |A minor mode replacement for isearch.el.
-;; |$Date: 92/05/27 11:33:57 $|$Revision: 1.2 $|~/modes/isearch-mode.el
+;; Copyright (C) 1992 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -23,29 +23,7 @@
;; file named COPYING. Among other things, the copyright notice
;; and this notice must be preserved on all copies.
-;;;====================================================================
-;;; Change History
-
-;;; $Header: /import/kaplan/kaplan/liberte/Isearch/RCS/isearch-mode.el,v 1.2 92/05/27 11:33:57 liberte Exp Locker: liberte $
-;;; $Log: isearch-mode.el,v $
-;;; Revision 1.2 92/05/27 11:33:57 liberte
-;;; Several new commands and features have been added. Emacs version
-;;; 19 has a search ring, which is supported here. Other fixes found
-;;; in the version 19 isearch are included here. Also see variables
-;;; search-caps-disable-folding, search-nonincremental-instead,
-;;; search-whitespace-regexp, and commands isearch-toggle-regexp,
-;;; isearch-edit-string,
-;;;
-;;; Semi-modal searching is supported, using a recursive edit. If
-;;; isearching is started non-interactively by calling one of the
-;;; isearch commands (e.g. isearch-forward), it does not return
-;;; until the search is completed. You should still be able switch
-;;; buffers, so be careful not to get things confused.
-;;;
-
-;;; Changes for 1.1
-;;; 3/18/92 Fixed invalid-regexp.
-;;; 3/18/92 Fixed yanking in regexps.
+;;; Commentary:
;;;====================================================================
;; Instructions
@@ -80,6 +58,33 @@
;; buffer; ideally, the echo area should redisplay the searching status.
;; A select-window-hook might be useful.
+;;; Change Log:
+
+;;;====================================================================
+
+;;; $Header: /import/kaplan/kaplan/liberte/Isearch/RCS/isearch-mode.el,v 1.2 92/05/27 11:33:57 liberte Exp Locker: liberte $
+;;; $Log: isearch-mode.el,v $
+;;; Revision 1.2 92/05/27 11:33:57 liberte
+;;; Several new commands and features have been added. Emacs version
+;;; 19 has a search ring, which is supported here. Other fixes found
+;;; in the version 19 isearch are included here. Also see variables
+;;; search-caps-disable-folding, search-nonincremental-instead,
+;;; search-whitespace-regexp, and commands isearch-toggle-regexp,
+;;; isearch-edit-string,
+;;;
+;;; Semi-modal searching is supported, using a recursive edit. If
+;;; isearching is started non-interactively by calling one of the
+;;; isearch commands (e.g. isearch-forward), it does not return
+;;; until the search is completed. You should still be able switch
+;;; buffers, so be careful not to get things confused.
+;;;
+
+;;; Changes for 1.1
+;;; 3/18/92 Fixed invalid-regexp.
+;;; 3/18/92 Fixed yanking in regexps.
+
+;;; Code:
+
;;;=========================================================================
;;; The following, defined in loaddefs.el, are still used with isearch-mode.
diff --git a/lisp/kermit.el b/lisp/kermit.el
index 73fbc7e517b..883ed787bd1 100644
--- a/lisp/kermit.el
+++ b/lisp/kermit.el
@@ -1,5 +1,9 @@
-;;Additions to shell mode for use with kermit, etc.
-;;Feb 1988, Jeff Norden - jeff@colgate.csnet
+;;; kermit.el --- additions to shell mode for use with kermit, etc.
+
+;; Author: Jeff Norden <jeff@colgate.csnet>
+;; Created: 15 Feb 1988
+;; Last-modified: 12 Mar 1992
+
;; Copyright (C) 1988 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -18,7 +22,7 @@
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
-(require 'shell)
+;;; Commentary
;; I'm not sure, but I think somebody asked about running kermit under shell
;; mode a while ago. Anyway, here is some code that I find useful. The result
@@ -69,6 +73,8 @@
;; Please let me know if any bugs turn up.
;; Feb 1988, Jeff Norden - jeff@colgate.csnet
+(require 'shell)
+
(defvar kermit-esc-char "\C-\\" "*Kermit's escape char")
(defun kermit-esc ()
@@ -136,4 +142,4 @@ command `kermit | tr -d '\\015''."
(interactive)
(set-process-filter (get-buffer-process (current-buffer)) nil))
-
+;;; kermit.el ends here
diff --git a/lisp/progmodes/perl-mode.el b/lisp/progmodes/perl-mode.el
index 250a5622bab..c31de9470a2 100644
--- a/lisp/progmodes/perl-mode.el
+++ b/lisp/progmodes/perl-mode.el
@@ -63,7 +63,7 @@
;; It may be good style to put a set of redundant braces around your
;; main program. This will let you reindent it with meta-^q.
-;; Known problems (these are all caused by limitations in the elisp
+;; Known problems (these are all caused by limitations in the Emacs Lisp
;; parsing routine (parse-partial-sexp), which was not designed for such
;; a rich language; writing a more suitable parser would be a big job):
;; 1) Regular expression delimitors do not act as quotes, so special
diff --git a/lisp/superyank.el b/lisp/superyank.el
index 9746b22a450..c6650468382 100644
--- a/lisp/superyank.el
+++ b/lisp/superyank.el
@@ -48,7 +48,7 @@
;; modified: 12-Apr-1989 baw (incorp other mail yank features seen on net)
;; created : 16-Feb-1989 baw (mod vanilla fn indent-rigidly mail-yank-original)
-;; Though I wrote this package basically from scratch, as an elisp
+;; Though I wrote this package basically from scratch, as an Emacs Lisp
;; learning exercise, it was inspired by postings of similar packages to
;; the gnu.emacs newsgroup over the past month or so.
;;
diff --git a/lisp/textmodes/ispell4.el b/lisp/textmodes/ispell4.el
index 04bd066bac8..c32eaf4447e 100644
--- a/lisp/textmodes/ispell4.el
+++ b/lisp/textmodes/ispell4.el
@@ -1,5 +1,8 @@
;;; ispell.el --- this is the GNU EMACS interface to GNU ISPELL version 3.
+;; Maintainer: FSF
+;; Last-Modified: 02 Jun 1992
+
;;Copyright (C) 1990, 1991 Free Software Foundation, Inc.
;;
;;This file is part of GNU Emacs.
@@ -18,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 ispell-have-new-look t
"T if default 'look' program has the -r flag.")