]> git.eshelyaron.com Git - emacs.git/commitdiff
(change-log-font-lock-keywords): Require colon after
authorKarl Heuer <kwzh@gnu.org>
Tue, 28 May 1996 15:46:49 +0000 (15:46 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 28 May 1996 15:46:49 +0000 (15:46 +0000)
parenthesized function name.

lisp/add-log.el

index 02f1e0c8e9ce2b6ad7beec4d33d613900821b286..c6974583e66028b6830770c8d5aa9a36690298e3 100644 (file)
@@ -49,7 +49,7 @@ This defaults to the value of `user-mail-address'.")
 (defvar change-log-font-lock-keywords
   '(("^[SMTWF].+" . font-lock-function-name-face)      ; Date line.
     ("^\t\\* \\([^ :\n]+\\)" 1 font-lock-comment-face) ; File name.
-    ("\(\\([^)\n]+\\)\)" 1 font-lock-keyword-face))    ; Function name.
+    ("(\\([^)\n]+\\)):" 1 font-lock-keyword-face))     ; Function name.
   "Additional expressions to highlight in Change Log mode.")
 
 (defvar change-log-mode-map nil