aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-03-16 04:37:48 +0000
committerRichard M. Stallman1995-03-16 04:37:48 +0000
commitc0d7987107ab2fa9183aadf36d38e3be2542873a (patch)
tree019ac87376cff61733e32d905511555d6512c527
parent41e798a9699d5b6815a94ad2c5af86e1bdec6c3c (diff)
downloademacs-c0d7987107ab2fa9183aadf36d38e3be2542873a.tar.gz
emacs-c0d7987107ab2fa9183aadf36d38e3be2542873a.zip
Comment change.
-rw-r--r--lisp/dired-x.el2
-rw-r--r--lisp/emacs-lisp/advice.el2
-rw-r--r--lisp/emacs-lisp/eval-reg.el1
-rw-r--r--lisp/emacs-lisp/lisp-mnt.el6
-rw-r--r--lisp/find-dired.el34
-rw-r--r--lisp/hilit19.el2
-rw-r--r--lisp/icomplete.el5
7 files changed, 10 insertions, 42 deletions
diff --git a/lisp/dired-x.el b/lisp/dired-x.el
index b265d32886c..876b040f2ca 100644
--- a/lisp/dired-x.el
+++ b/lisp/dired-x.el
@@ -906,7 +906,7 @@ dired."
906;;; that matches the first file in the file list. 906;;; that matches the first file in the file list.
907;;; 907;;;
908;;; * If the REGEXP matches all the entries of the file list then evaluate 908;;; * If the REGEXP matches all the entries of the file list then evaluate
909;;; COMMAND, which is either a string or an elisp expression returning a 909;;; COMMAND, which is either a string or a Lisp expression returning a
910;;; string. COMMAND may be a list of commands. 910;;; string. COMMAND may be a list of commands.
911;;; 911;;;
912;;; * Return this command to `dired-guess-shell-command' which prompts user 912;;; * Return this command to `dired-guess-shell-command' which prompts user
diff --git a/lisp/emacs-lisp/advice.el b/lisp/emacs-lisp/advice.el
index 6495c3b2d3b..258c7139474 100644
--- a/lisp/emacs-lisp/advice.el
+++ b/lisp/emacs-lisp/advice.el
@@ -1436,7 +1436,7 @@
1436;; (fie 2) 1436;; (fie 2)
1437;; 8 1437;; 8
1438;; 1438;;
1439;; If you put a preactivating `defadvice' into an elisp file that gets byte- 1439;; If you put a preactivating `defadvice' into a Lisp file that gets byte-
1440;; compiled then the constructed advised definition will get compiled by 1440;; compiled then the constructed advised definition will get compiled by
1441;; the byte-compiler. For that to occur in a v18 emacs you have to put the 1441;; the byte-compiler. For that to occur in a v18 emacs you have to put the
1442;; `defadvice' inside a `defun' because the v18 compiler does not compile 1442;; `defadvice' inside a `defun' because the v18 compiler does not compile
diff --git a/lisp/emacs-lisp/eval-reg.el b/lisp/emacs-lisp/eval-reg.el
index 6d22fa22aa5..f4e32ded320 100644
--- a/lisp/emacs-lisp/eval-reg.el
+++ b/lisp/emacs-lisp/eval-reg.el
@@ -213,3 +213,4 @@ This version calls `eval-region' on the whole buffer."
213 213
214(provide 'eval-reg) 214(provide 'eval-reg)
215 215
216;;; eval-reg.el ends here
diff --git a/lisp/emacs-lisp/lisp-mnt.el b/lisp/emacs-lisp/lisp-mnt.el
index ac2d9c4b4ca..2b91c0b6f5f 100644
--- a/lisp/emacs-lisp/lisp-mnt.el
+++ b/lisp/emacs-lisp/lisp-mnt.el
@@ -5,7 +5,7 @@
5;; Author: Eric S. Raymond <esr@snark.thyrsus.com> 5;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
6;; Maintainer: Eric S. Raymond <esr@snark.thyrsus.com> 6;; Maintainer: Eric S. Raymond <esr@snark.thyrsus.com>
7;; Created: 14 Jul 1992 7;; Created: 14 Jul 1992
8;; Version: $Id: lisp-mnt.el,v 1.8 1994/05/03 23:21:00 kwzh Exp rms $ 8;; Version: $Id: lisp-mnt.el,v 1.9 1994/06/17 19:59:09 rms Exp rms $
9;; Keywords: docs 9;; Keywords: docs
10;; X-Bogus-Bureaucratic-Cruft: Gruad will get you if you don't watch out! 10;; X-Bogus-Bureaucratic-Cruft: Gruad will get you if you don't watch out!
11 11
@@ -87,7 +87,7 @@
87;; author *is* one of the maintainers.) 87;; author *is* one of the maintainers.)
88;; 88;;
89;; * Keywords line --- used by the finder code (now under construction) 89;; * Keywords line --- used by the finder code (now under construction)
90;; for finding elisp code related to a topic. 90;; for finding Emacs Lisp code related to a topic.
91;; 91;;
92;; * X-Bogus-Bureaucratic-Cruft line --- this is a joke and an example 92;; * X-Bogus-Bureaucratic-Cruft line --- this is a joke and an example
93;; of a comment header. Headers starting with `X-' should never be used 93;; of a comment header. Headers starting with `X-' should never be used
@@ -100,7 +100,7 @@
100;; * Change log line --- optional, exists to terminate the commentary 100;; * Change log line --- optional, exists to terminate the commentary
101;; section and start a change-log part, if one exists. 101;; section and start a change-log part, if one exists.
102;; 102;;
103;; * Code line --- exists so elisp can know where commentary and/or 103;; * Code line --- exists so Lisp can know where commentary and/or
104;; change-log sections end. 104;; change-log sections end.
105;; 105;;
106;; * Footer line --- marks end-of-file so it can be distinguished from 106;; * Footer line --- marks end-of-file so it can be distinguished from
diff --git a/lisp/find-dired.el b/lisp/find-dired.el
index 04577c4e6f5..427f82a9d6a 100644
--- a/lisp/find-dired.el
+++ b/lisp/find-dired.el
@@ -6,8 +6,8 @@
6;; Sebastian Kremer <sk@thp.uni-koeln.de> 6;; Sebastian Kremer <sk@thp.uni-koeln.de>
7;; Keywords: unix 7;; Keywords: unix
8 8
9(defconst find-dired-version (substring "$Revision: 1.18 $" 11 -2) 9(defconst find-dired-version (substring "$Revision: 1.19 $" 11 -2)
10 "$Id: find-dired.el,v 1.18 1994/12/15 12:16:29 rms Exp roland $") 10 "$Id: find-dired.el,v 1.19 1995/03/06 19:55:47 roland Exp rms $")
11 11
12;;; This program is free software; you can redistribute it and/or modify 12;;; This program is free software; you can redistribute it and/or modify
13;;; it under the terms of the GNU General Public License as published by 13;;; it under the terms of the GNU General Public License as published by
@@ -25,39 +25,11 @@
25;;; 02139, USA. 25;;; 02139, USA.
26;;; 26;;;
27 27
28;;; Commentary:
29
30;; LISPDIR ENTRY for the Elisp Archive ===============================
31;; LCD Archive Entry:
32;; find-dired|Roland McGrath, Sebastian Kremer
33;; |roland@gnu.ai.mit.edu, sk@thp.uni-koeln.de
34;; |Run a `find' command and dired the output
35;; |$Date: 1994/12/15 12:16:29 $|$Revision: 1.18 $|
36
37;; INSTALLATION ======================================================
38
39;; To use this file, byte-compile it, install it somewhere in your
40;; load-path, and put:
41
42;; (autoload 'find-dired "find-dired" nil t)
43;; (autoload 'find-name-dired "find-dired" nil t)
44;; (autoload 'find-grep-dired "find-dired" nil t)
45
46;; in your ~/.emacs, or site-init.el, etc.
47
48;; To bind it to a key, put, e.g.:
49;;
50;; (global-set-key "\C-cf" 'find-dired)
51;; (global-set-key "\C-cn" 'find-name-dired)
52;; (global-set-key "\C-cl" 'find-grep-dired)
53;;
54;; in your ~/.emacs.
55
56;;; Code: 28;;; Code:
57 29
58(require 'dired) 30(require 'dired)
59 31
60;; find(1)'s -ls corresponds to these switches. 32;; find's -ls corresponds to these switches.
61;; Note -b, at least GNU find quotes spaces etc. in filenames 33;; Note -b, at least GNU find quotes spaces etc. in filenames
62;;;###autoload 34;;;###autoload
63(defvar find-ls-option (if (eq system-type 'berkeley-unix) '("-ls" . "-gilsb") 35(defvar find-ls-option (if (eq system-type 'berkeley-unix) '("-ls" . "-gilsb")
diff --git a/lisp/hilit19.el b/lisp/hilit19.el
index 5fca0bab48e..71f7333a346 100644
--- a/lisp/hilit19.el
+++ b/lisp/hilit19.el
@@ -454,7 +454,7 @@ your init file.")
454 454
455(defconst hilit-default-face-table 455(defconst hilit-default-face-table
456 '( 456 '(
457 ;; used for C/C++ and elisp and perl 457 ;; used for C/C++ and Emacs Lisp and perl
458 (comment firebrick-italic moccasin italic) 458 (comment firebrick-italic moccasin italic)
459 (include purple Plum1 bold-italic) 459 (include purple Plum1 bold-italic)
460 (define ForestGreen-bold green bold) 460 (define ForestGreen-bold green bold)
diff --git a/lisp/icomplete.el b/lisp/icomplete.el
index a7b1872001f..e7d53a1f8a5 100644
--- a/lisp/icomplete.el
+++ b/lisp/icomplete.el
@@ -46,11 +46,6 @@
46;;; can be enabled any time after the package is loaded by invoking 46;;; can be enabled any time after the package is loaded by invoking
47;;; icomplete-mode without a prefix arg. 47;;; icomplete-mode without a prefix arg.
48 48
49;;; This version of icomplete runs on Emacs 19.18 and later. (It
50;;; depends on the incorporation of minibuffer-setup-hook.) The elisp
51;;; archives, ftp://archive.cis.ohio-state.edu/pub/gnu/emacs/elisp-archive,
52;;; probably still has a version that works in GNU Emacs v18.
53
54;;; Thanks to everyone for their suggestions for refinements of this 49;;; Thanks to everyone for their suggestions for refinements of this
55;;; package. I particularly have to credit Michael Cook, who 50;;; package. I particularly have to credit Michael Cook, who
56;;; implemented an incremental completion style in his 'iswitch' 51;;; implemented an incremental completion style in his 'iswitch'