diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-03-22 03:35:20 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-03-22 03:35:20 +0000 |
commit | 8662fc42d8f4ec614b544ea90ca34be0f908487a (patch) | |
tree | 361a4b0d94e0ee4eb85abf89e2554d1f671fe251 /lisp/emacs-lisp/copyright.el | |
parent | 8fd927907bbd7766486dc8adcebc064cc0c62e48 (diff) | |
download | emacs-8662fc42d8f4ec614b544ea90ca34be0f908487a.tar.gz |
(copyright-regexp): Allow "Copyright" and the copyright symbol together.
Diffstat (limited to 'lisp/emacs-lisp/copyright.el')
-rw-r--r-- | lisp/emacs-lisp/copyright.el | 4 |
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.") |