diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-02-07 17:39:27 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-02-07 17:39:27 +0000 |
commit | 3be4340f58042dd59dfcbe86b35ddb95006b0c98 (patch) | |
tree | 8d31dd6314ed18c4b45e6161ebfd5b184b334153 /lisp/emacs-lisp | |
parent | 8ff1bc942d9736d25e26e16794372c3d26033bc8 (diff) | |
download | emacs-3be4340f58042dd59dfcbe86b35ddb95006b0c98.tar.gz emacs-3be4340f58042dd59dfcbe86b35ddb95006b0c98.tar.bz2 emacs-3be4340f58042dd59dfcbe86b35ddb95006b0c98.zip |
(copyright-regexp): Delete the unibyte copyright symbol; it's redundant.
Fix a spazz in the multibyte encoding here.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/copyright.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/copyright.el b/lisp/emacs-lisp/copyright.el index 26ce7b9c071..abed05cf902 100644 --- a/lisp/emacs-lisp/copyright.el +++ b/lisp/emacs-lisp/copyright.el @@ -46,8 +46,8 @@ A value of nil means to search whole buffer." ;; The character classes include the unibyte (C) sign, ;; the Latin-1 version, and the Latin-9 version. (defcustom copyright-regexp - "\\([\251]\\|@copyright{}\\|[Cc]opyright\\s *:?\\s *\\(?:(C)\\)?\ -\\|[Cc]opyright\\s *:?\\s *[\251]\\)\ + "\\([]\\|@copyright{}\\|[Cc]opyright\\s *:?\\s *\\(?:(C)\\)?\ +\\|[Cc]opyright\\s *:?\\s *[]\\)\ \\s *\\([1-9]\\([-0-9, ';\n\t]\\|\\s<\\|\\s>\\)*[0-9]+\\)" "*What your copyright notice looks like. The second \\( \\) construct must match the years." |