1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

* outline.el: (outline-mode): Set font-lock-defaults.

This commit is contained in:
Simon Marshall 1994-10-12 09:00:56 +00:00
parent af4b1991f9
commit d31e6eafc2

View File

@ -206,8 +206,8 @@ Turning on outline mode calls the value of `text-mode-hook' and then of
(make-local-variable 'paragraph-separate)
(setq paragraph-separate (concat paragraph-separate "\\|^\\("
outline-regexp "\\)"))
(make-local-variable 'font-lock-keywords)
(setq font-lock-keywords outline-font-lock-keywords)
(make-local-variable 'font-lock-defaults)
(setq font-lock-defaults '(outline-font-lock-keywords t))
(make-local-variable 'change-major-mode-hook)
(add-hook 'change-major-mode-hook 'show-all)
(run-hooks 'text-mode-hook 'outline-mode-hook))