summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-08-04 00:37:04 +0000
committerRichard M. Stallman <rms@gnu.org>1997-08-04 00:37:04 +0000
commit0b596076e667102693307b5ec15bbf73ed8453b0 (patch)
treef7cbb53c0ad861e0636fdb9ee182cdfa0da166e5 /lisp/emacs-lisp
parent47adf45238fc8a93c355cba95b246349172ce009 (diff)
downloademacs-0b596076e667102693307b5ec15bbf73ed8453b0.tar.gz
emacs-0b596076e667102693307b5ec15bbf73ed8453b0.tar.bz2
emacs-0b596076e667102693307b5ec15bbf73ed8453b0.zip
(copyright-regexp): Recognize the Latin-1 copyright symbol.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/copyright.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/copyright.el b/lisp/emacs-lisp/copyright.el
index 1f0f6e249eb..2472aa56e2e 100644
--- a/lisp/emacs-lisp/copyright.el
+++ b/lisp/emacs-lisp/copyright.el
@@ -36,8 +36,8 @@
(defvar copyright-regexp
- "\\(\251\\|[Cc]opyright\\s *:?\\s *(C)\
-\\|[Cc]opyright\\s *:?\\s *\251\\)\
+ "\\([\251]\\|[Cc]opyright\\s *:?\\s *(C)\
+\\|[Cc]opyright\\s *:?\\s *[\251]\\)\
\\s *\\([1-9][-0-9, ']*[0-9]+\\) "
"*What your copyright notice looks like.
The second \\( \\) construct must match the years.")