diff options
author | Simon Marshall <simon@gnu.org> | 1994-10-12 08:04:08 +0000 |
---|---|---|
committer | Simon Marshall <simon@gnu.org> | 1994-10-12 08:04:08 +0000 |
commit | f50af36378afc4675407566db075ac16f187c689 (patch) | |
tree | 648bc203839970fb886dd41a1fa848381f2ea6dc /lisp/add-log.el | |
parent | c63fd2e2f1d34f67c01e4d5dcb0ae53b23ca68a1 (diff) | |
download | emacs-f50af36378afc4675407566db075ac16f187c689.tar.gz |
* add-log.el: (change-log-mode): Set font-lock-defaults.
Diffstat (limited to 'lisp/add-log.el')
-rw-r--r-- | lisp/add-log.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el index 340ef085734..0012f9f4d1f 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el @@ -265,7 +265,8 @@ Runs `change-log-mode-hook'." (set (make-local-variable 'page-delimiter) "^\\<\\|^\f") (set (make-local-variable 'version-control) 'never) (set (make-local-variable 'adaptive-fill-regexp) "\\s *") - (set (make-local-variable 'font-lock-keywords) change-log-font-lock-keywords) + (set (make-local-variable 'font-lock-defaults) + '(change-log-font-lock-keywords t)) (run-hooks 'change-log-mode-hook)) (defvar change-log-mode-map nil |