From: Richard M. Stallman Date: Mon, 4 Aug 1997 00:37:04 +0000 (+0000) Subject: (copyright-regexp): Recognize the Latin-1 copyright symbol. X-Git-Tag: emacs-20.1~839 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0b596076e667102693307b5ec15bbf73ed8453b0;p=emacs.git (copyright-regexp): Recognize the Latin-1 copyright symbol. --- diff --git a/lisp/emacs-lisp/copyright.el b/lisp/emacs-lisp/copyright.el index 1f0f6e249eb..2472aa56e2e 100644 --- a/lisp/emacs-lisp/copyright.el +++ b/lisp/emacs-lisp/copyright.el @@ -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.")