diff options
| author | Richard M. Stallman | 2002-01-22 02:19:12 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-01-22 02:19:12 +0000 |
| commit | 2db0da92f8e5ed4e8ab7fa1bd8467f0f0a94e1f8 (patch) | |
| tree | 2327ffc838629535e4a83220b1863018b91709d1 | |
| parent | 00dc02800f6f9ae3d50df7604ea78fc91fa32215 (diff) | |
| download | emacs-2db0da92f8e5ed4e8ab7fa1bd8467f0f0a94e1f8.tar.gz emacs-2db0da92f8e5ed4e8ab7fa1bd8467f0f0a94e1f8.zip | |
(copyright-regexp): Fix previous change.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/copyright.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 11f3624ba32..fd209047da2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2002-01-21 Richard M. Stallman <rms@gnu.org> | 1 | 2002-01-21 Richard M. Stallman <rms@gnu.org> |
| 2 | 2 | ||
| 3 | * emacs-lisp/copyright.el (copyright-regexp): Fix previous change. | ||
| 4 | |||
| 5 | * net/ange-ftp.el (ange-ftp-bs2000-posix-hook-installed): | ||
| 6 | Move defvar up. | ||
| 7 | |||
| 3 | * textmodes/ispell.el (ispell-help): Clean up echo area if user quits. | 8 | * textmodes/ispell.el (ispell-help): Clean up echo area if user quits. |
| 4 | 9 | ||
| 5 | * ibuffer.el: Don't require ibuf-ext at load time. | 10 | * ibuffer.el: Don't require ibuf-ext at load time. |
diff --git a/lisp/emacs-lisp/copyright.el b/lisp/emacs-lisp/copyright.el index 93ee030e7bf..26ce7b9c071 100644 --- a/lisp/emacs-lisp/copyright.el +++ b/lisp/emacs-lisp/copyright.el | |||
| @@ -46,7 +46,7 @@ A value of nil means to search whole buffer." | |||
| 46 | ;; The character classes include the unibyte (C) sign, | 46 | ;; The character classes include the unibyte (C) sign, |
| 47 | ;; the Latin-1 version, and the Latin-9 version. | 47 | ;; the Latin-1 version, and the Latin-9 version. |
| 48 | (defcustom copyright-regexp | 48 | (defcustom copyright-regexp |
| 49 | "\\([\251]\\|@copyright{}\\|[Cc]opyright\\s *:?\\s *\\((C)\\)?\ | 49 | "\\([\251]\\|@copyright{}\\|[Cc]opyright\\s *:?\\s *\\(?:(C)\\)?\ |
| 50 | \\|[Cc]opyright\\s *:?\\s *[\251]\\)\ | 50 | \\|[Cc]opyright\\s *:?\\s *[\251]\\)\ |
| 51 | \\s *\\([1-9]\\([-0-9, ';\n\t]\\|\\s<\\|\\s>\\)*[0-9]+\\)" | 51 | \\s *\\([1-9]\\([-0-9, ';\n\t]\\|\\s<\\|\\s>\\)*[0-9]+\\)" |
| 52 | "*What your copyright notice looks like. | 52 | "*What your copyright notice looks like. |