summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-03-22 03:35:20 +0000
committerRichard M. Stallman <rms@gnu.org>1997-03-22 03:35:20 +0000
commitad081ef18996e3e4252a6e1d061f16aa0c55f3d5 (patch)
tree642bacb52a3df9adad874cf2701db069ef6343b0 /lisp
parentd2a34ed88192b1804aad78a2868d298a30d24013 (diff)
downloademacs-ad081ef18996e3e4252a6e1d061f16aa0c55f3d5.tar.gz
(copyright-regexp): Allow "Copyright" and the copyright symbol together.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/copyright.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/copyright.el b/lisp/emacs-lisp/copyright.el
index f8ba8c04404..4f820810926 100644
--- a/lisp/emacs-lisp/copyright.el
+++ b/lisp/emacs-lisp/copyright.el
@@ -35,7 +35,9 @@
(defvar copyright-regexp
- "\\(\251\\|[Cc]opyright\\s *:?\\s *(C)\\)\\s *\\([1-9][-0-9, ']*[0-9]+\\) "
+ "\\(\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.")