diff options
author | Simon Marshall <simon@gnu.org> | 1995-04-24 11:03:55 +0000 |
---|---|---|
committer | Simon Marshall <simon@gnu.org> | 1995-04-24 11:03:55 +0000 |
commit | 8495f54c18971f61cafe7f608c44bc5fc05afdaa (patch) | |
tree | db0d060859ed5d8825817d475df61b7f26c5e441 /lisp/add-log.el | |
parent | 10f9ca19ac9831360ac0e64fbb76d722686d3ed5 (diff) | |
download | emacs-8495f54c18971f61cafe7f608c44bc5fc05afdaa.tar.gz |
change-log-font-lock-keywords efficiency fix.
Diffstat (limited to 'lisp/add-log.el')
-rw-r--r-- | lisp/add-log.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el index 734fa5ebf86..b51d43b4158 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el @@ -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.") |