aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Marshall1994-10-12 08:04:08 +0000
committerSimon Marshall1994-10-12 08:04:08 +0000
commit4b286ecae823690c3ab1d6988928a004903f4b07 (patch)
treed488c6e301c54738e7b22e5a84e6f48446f3fa10
parent7e67d00b981117b8f148c535a070b76994e17056 (diff)
downloademacs-4b286ecae823690c3ab1d6988928a004903f4b07.tar.gz
emacs-4b286ecae823690c3ab1d6988928a004903f4b07.zip
* add-log.el: (change-log-mode): Set font-lock-defaults.
-rw-r--r--lisp/add-log.el3
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'."
265 (set (make-local-variable 'page-delimiter) "^\\<\\|^\f") 265 (set (make-local-variable 'page-delimiter) "^\\<\\|^\f")
266 (set (make-local-variable 'version-control) 'never) 266 (set (make-local-variable 'version-control) 'never)
267 (set (make-local-variable 'adaptive-fill-regexp) "\\s *") 267 (set (make-local-variable 'adaptive-fill-regexp) "\\s *")
268 (set (make-local-variable 'font-lock-keywords) change-log-font-lock-keywords) 268 (set (make-local-variable 'font-lock-defaults)
269 '(change-log-font-lock-keywords t))
269 (run-hooks 'change-log-mode-hook)) 270 (run-hooks 'change-log-mode-hook))
270 271
271(defvar change-log-mode-map nil 272(defvar change-log-mode-map nil