diff options
| author | Markus Rost | 2002-11-19 15:01:56 +0000 |
|---|---|---|
| committer | Markus Rost | 2002-11-19 15:01:56 +0000 |
| commit | 4e2ad9eaeaa8117a951f67a59f085efaf04f8423 (patch) | |
| tree | 05306eadb0564c116193056e809a34b5164dea95 | |
| parent | 04dbfa089e35a28b358e404a0b6dfe6ad133af2b (diff) | |
| download | emacs-4e2ad9eaeaa8117a951f67a59f085efaf04f8423.tar.gz emacs-4e2ad9eaeaa8117a951f67a59f085efaf04f8423.zip | |
(defgroup lisp-shadow): New group name. Previous group name shadow is
used in shadowfile.el.
(shadows-compare-text-p): Use group lisp-shadow.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/emacs-lisp/shadow.el | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1d2fdfeb4a0..e9a5c41c187 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2002-11-19 Markus Rost <rost@math.ohio-state.edu> | ||
| 2 | |||
| 3 | * emacs-lisp/shadow.el (defgroup lisp-shadow): New group name. | ||
| 4 | Previous group name shadow is used in shadowfile.el. | ||
| 5 | (shadows-compare-text-p): Use group lisp-shadow. | ||
| 6 | |||
| 1 | 2002-11-19 Masatake Yamato <jet@gyve.org> (tiny change) | 7 | 2002-11-19 Masatake Yamato <jet@gyve.org> (tiny change) |
| 2 | 8 | ||
| 3 | * register.el (describe-register-1): Don't assign to val the value | 9 | * register.el (describe-register-1): Don't assign to val the value |
diff --git a/lisp/emacs-lisp/shadow.el b/lisp/emacs-lisp/shadow.el index 0a7b435267c..3618cdd9ea2 100644 --- a/lisp/emacs-lisp/shadow.el +++ b/lisp/emacs-lisp/shadow.el | |||
| @@ -53,7 +53,7 @@ | |||
| 53 | 53 | ||
| 54 | ;;; Code: | 54 | ;;; Code: |
| 55 | 55 | ||
| 56 | (defgroup shadow nil | 56 | (defgroup lisp-shadow nil |
| 57 | "Locate Emacs Lisp file shadowings." | 57 | "Locate Emacs Lisp file shadowings." |
| 58 | :prefix "shadows-" | 58 | :prefix "shadows-" |
| 59 | :group 'lisp) | 59 | :group 'lisp) |
| @@ -62,7 +62,7 @@ | |||
| 62 | "*If non-nil, then shadowing files are reported only if their text differs. | 62 | "*If non-nil, then shadowing files are reported only if their text differs. |
| 63 | This is slower, but filters out some innocuous shadowing." | 63 | This is slower, but filters out some innocuous shadowing." |
| 64 | :type 'boolean | 64 | :type 'boolean |
| 65 | :group 'shadow) | 65 | :group 'lisp-shadow) |
| 66 | 66 | ||
| 67 | (defun find-emacs-lisp-shadows (&optional path) | 67 | (defun find-emacs-lisp-shadows (&optional path) |
| 68 | "Return a list of Emacs Lisp files that create shadows. | 68 | "Return a list of Emacs Lisp files that create shadows. |