Mercurial > emacs
changeset 19107:218d5b131575
(copyright-regexp): Recognize the Latin-1 copyright symbol.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 04 Aug 1997 00:37:04 +0000 |
parents | 4a5ab08209ee |
children | 68f319192499 |
files | lisp/emacs-lisp/copyright.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/copyright.el Sun Aug 03 22:59:26 1997 +0000 +++ b/lisp/emacs-lisp/copyright.el Mon Aug 04 00:37:04 1997 +0000 @@ -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.")