1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-05 20:43:08 +00:00

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

This commit is contained in:
Simon Marshall 1994-10-12 09:02:43 +00:00
parent d31e6eafc2
commit 7fa28db0ca

View File

@ -322,8 +322,8 @@ no args, if that value is non-nil."
(setq comment-start-skip "(\\*+ *\\|{ *")
(make-local-variable 'comment-end)
(setq comment-end "}")
(make-local-variable 'font-lock-keywords)
(setq font-lock-keywords pascal-font-lock-keywords)
(make-local-variable 'font-lock-defaults)
(setq font-lock-defaults '(pascal-font-lock-keywords nil t))
(run-hooks 'pascal-mode-hook))