aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp/copyright.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1997-03-22 03:35:20 +0000
committerRichard M. Stallman <[email protected]>1997-03-22 03:35:20 +0000
commit8662fc42d8f4ec614b544ea90ca34be0f908487a (patch)
tree361a4b0d94e0ee4eb85abf89e2554d1f671fe251 /lisp/emacs-lisp/copyright.el
parent8fd927907bbd7766486dc8adcebc064cc0c62e48 (diff)
(copyright-regexp): Allow "Copyright" and the copyright symbol together.
Diffstat (limited to 'lisp/emacs-lisp/copyright.el')
-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 f8ba8c0440..4f82081092 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.")