From: Karl Heuer Date: Tue, 28 May 1996 15:46:49 +0000 (+0000) Subject: (change-log-font-lock-keywords): Require colon after X-Git-Tag: emacs-19.34~563 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6ad1cbf5bff08bf09bdb807d9e53a381ec1b9f3b;p=emacs.git (change-log-font-lock-keywords): Require colon after parenthesized function name. --- diff --git a/lisp/add-log.el b/lisp/add-log.el index 02f1e0c8e9c..c6974583e66 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el @@ -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