]> git.eshelyaron.com Git - emacs.git/commitdiff
(copyright-regexp): Remove redundancy.
authorDave Love <fx@gnu.org>
Tue, 30 Jul 2002 11:23:12 +0000 (11:23 +0000)
committerDave Love <fx@gnu.org>
Tue, 30 Jul 2002 11:23:12 +0000 (11:23 +0000)
lisp/ChangeLog
lisp/emacs-lisp/copyright.el

index f69d54d956c7686224316927a945012d03eced2c..5d7365f2940d554e6526d77d57d399615cf09b2f 100644 (file)
@@ -1,3 +1,7 @@
+2002-07-30  Dave Love  <fx@gnu.org>
+
+       * emacs-lisp/copyright.el (copyright-regexp): Remove redundancy.
+
 2002-07-26  Kenichi Handa  <handa@etl.go.jp>
 
        * international/characters.el: Setup char-script-table.
 2002-06-15  Dave Love  <fx@gnu.org>
 
        * language/cyrillic.el ("Belarusian"): Doc fix.
-       (Cp1125, koi8-t): Doc fix.
+       (cp1125, koi8-t): Doc fix.
 
        * international/mule-cmds.el (find-multibyte-characters): Doc fix.
        (find-multibyte-characters): Don't test for charset `unknown'.
 
        * international/mule-diag.el (print-coding-system): Incomplete
        updates.
-       (Describe-character-set): List more properties.
-       (Print-fontset): Fix case of vector font-spec.
+       (describe-character-set): List more properties.
+       (print-fontset): Fix case of vector font-spec.
        (describe-current-coding-system): Fix iso-7, iso-7-else.
 
        * international/mule-conf.el (ibm866): Fix alias.
 
 2002-05-22  Dave Love  <fx@gnu.org>
 
-       * international/mule-conf.el (code-pages): Provide for
+       * international/mule-conf.el (code-pages): Provide, for
        compatibility.
 
        * international/code-pages.el: Removed.
 
 2002-05-21  Kenichi Handa  <handa@etl.go.jp>
 
-       * international/mule-conf.el (vietnamese-viscii-lower,
-       vietnamese-viscii-upper): Supply them :code-offset, then unify by
+       * international/mule-conf.el (vietnamese-viscii-lower)
+       (vietnamese-viscii-upper): Supply them :code-offset, then unify by
        mapping table.
 
 2002-05-20  Dave Love  <fx@gnu.org>
index abed05cf9028d7e9bcad37a2ac8bef3feebe2df8..9411c8be8ec1ccc26792fe06957e3867f3ad4263 100644 (file)
@@ -43,11 +43,9 @@ A value of nil means to search whole buffer."
 ;; Would it be cleaner to specify Latin-1 coding for this file,
 ;; and not use both unibyte and multibyte copyright symbol characters?
 
-;; The character classes include the unibyte (C) sign,
-;; the Latin-1 version, and the Latin-9 version.
 (defcustom copyright-regexp
- "\\([\81©\8e©]\\|@copyright{}\\|[Cc]opyright\\s *:?\\s *\\(?:(C)\\)?\
-\\|[Cc]opyright\\s *:?\\s *[\81©\8e©]\\)\
+ "\\(©\\|@copyright{}\\|[Cc]opyright\\s *:?\\s *\\(?:(C)\\)?\
+\\|[Cc]opyright\\s *:?\\s *©\\)\
 \\s *\\([1-9]\\([-0-9, ';\n\t]\\|\\s<\\|\\s>\\)*[0-9]+\\)"
   "*What your copyright notice looks like.
 The second \\( \\) construct must match the years."
@@ -167,7 +165,7 @@ version \\([0-9]+\\), or (at"
 
 ;; For the copyright sign:
 ;; Local Variables:
-;; coding: emacs-mule
+;; coding: utf-8
 ;; End:
 
 ;;; copyright.el ends here