]> git.eshelyaron.com Git - emacs.git/commitdiff
change-log-font-lock-keywords efficiency fix.
authorSimon Marshall <simon@gnu.org>
Mon, 24 Apr 1995 11:03:55 +0000 (11:03 +0000)
committerSimon Marshall <simon@gnu.org>
Mon, 24 Apr 1995 11:03:55 +0000 (11:03 +0000)
lisp/add-log.el

index 734fa5ebf86dcd376b1a3c5611b531e758411fa6..b51d43b41587a566edb62593c6513121f6df0b85 100644 (file)
@@ -44,7 +44,7 @@ This defaults to the value returned by the `user-full-name' function.")
 This defaults to the value of `user-mail-address'.")
 
 (defvar change-log-font-lock-keywords
-  '(("^[SMTWF].+$" . font-lock-function-name-face)     ; Date line.
+  '(("^[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.
   "Additional expressions to highlight in Change Log mode.")