]> git.eshelyaron.com Git - emacs.git/commitdiff
(copyright-regexp): Recognize ISO copyright symbol.
authorKarl Heuer <kwzh@gnu.org>
Sun, 3 Dec 1995 20:43:00 +0000 (20:43 +0000)
committerKarl Heuer <kwzh@gnu.org>
Sun, 3 Dec 1995 20:43:00 +0000 (20:43 +0000)
(copyright-update): Pattern is now match #2, not #1.

lisp/emacs-lisp/copyright.el

index cea6d6f20723a8739df59c5e676c61228eeb8613..e6f5ba34f747145d8e18d96543c6f55fbf7106b4 100644 (file)
@@ -34,9 +34,9 @@
 
 
 (defvar copyright-regexp
-  "[Cc]opyright\\s *:?\\s *(C)\\s *\\([1-9][-0-9, ']*[0-9]+\\) "
+  "\\(\251\\|[Cc]opyright\\s *:?\\s *(C)\\)\\s *\\([1-9][-0-9, ']*[0-9]+\\) "
   "*What your copyright notice looks like.
-Must contain \\( \\) construct matching the years.")
+The second \\( \\) construct must match the years.")
 
 
 (defvar copyright-query 'function
@@ -68,7 +68,7 @@ copyright, if any, are updated as well."
          (widen)
          (goto-char (point-min))
          (if (re-search-forward copyright-regexp copyright-limit t)
-             (if (string= (buffer-substring (- (match-end 1) 2) (match-end 1))
+             (if (string= (buffer-substring (- (match-end 2) 2) (match-end 2))
                           (substring copyright-current-year -2))
                  ()
                (backward-char 1)