From: Richard M. Stallman Date: Sat, 22 Mar 1997 03:35:20 +0000 (+0000) Subject: (copyright-regexp): Allow "Copyright" and the copyright symbol together. X-Git-Tag: emacs-20.1~2742 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8662fc42d8f4ec614b544ea90ca34be0f908487a;p=emacs.git (copyright-regexp): Allow "Copyright" and the copyright symbol together. --- 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.")