]> git.eshelyaron.com Git - emacs.git/commitdiff
(change-log-font-lock-keywords): Remove `:' from
authorJuri Linkov <juri@jurta.org>
Sun, 23 May 2004 20:57:50 +0000 (20:57 +0000)
committerJuri Linkov <juri@jurta.org>
Sun, 23 May 2004 20:57:50 +0000 (20:57 +0000)
regexps for function and variable names.

lisp/add-log.el

index ead1fe679d6ebc7094702f2f9e760661e096ca33..3c29e8a465ef65800767348f5683786f44529671 100644 (file)
@@ -230,13 +230,13 @@ Note: The search is conducted only within 10%, at the beginning of the file."
      ;; Possibly further names in a list:
      ("\\=, \\([^ ,:([\n]+\\)" nil nil (1 'change-log-file-face))
      ;; Possibly a parenthesized list of names:
-     ("\\= (\\([^) ,:\n]+\\)" nil nil (1 'change-log-list-face))
-     ("\\=, *\\([^) ,:\n]+\\)" nil nil (1 'change-log-list-face)))
+     ("\\= (\\([^) ,\n]+\\)" nil nil (1 'change-log-list-face))
+     ("\\=, *\\([^) ,\n]+\\)" nil nil (1 'change-log-list-face)))
     ;;
     ;; Function or variable names.
-    ("^\t(\\([^) ,:\n]+\\)"
+    ("^\t(\\([^) ,\n]+\\)"
      (1 'change-log-list-face)
-     ("\\=, *\\([^) ,:\n]+\\)" nil nil (1 'change-log-list-face)))
+     ("\\=, *\\([^) ,\n]+\\)" nil nil (1 'change-log-list-face)))
     ;;
     ;; Conditionals.
     ("\\[!?\\([^]\n]+\\)\\]\\(:\\| (\\)" (1 'change-log-conditionals-face))