aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Marshall1994-10-12 09:02:43 +0000
committerSimon Marshall1994-10-12 09:02:43 +0000
commit7fa28db0caca03491b75707e776ee5add976726f (patch)
tree48d0d589ee435bf5c51012555608e90a524be9d5
parentd31e6eafc224e0aa979cf55843296093b87674d4 (diff)
downloademacs-7fa28db0caca03491b75707e776ee5add976726f.tar.gz
emacs-7fa28db0caca03491b75707e776ee5add976726f.zip
* pascal.el: (pascal-mode): Set font-lock-defaults.
-rw-r--r--lisp/progmodes/pascal.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/pascal.el b/lisp/progmodes/pascal.el
index 8a26c65ccc9..78234bb5518 100644
--- a/lisp/progmodes/pascal.el
+++ b/lisp/progmodes/pascal.el
@@ -322,8 +322,8 @@ no args, if that value is non-nil."
322 (setq comment-start-skip "(\\*+ *\\|{ *") 322 (setq comment-start-skip "(\\*+ *\\|{ *")
323 (make-local-variable 'comment-end) 323 (make-local-variable 'comment-end)
324 (setq comment-end "}") 324 (setq comment-end "}")
325 (make-local-variable 'font-lock-keywords) 325 (make-local-variable 'font-lock-defaults)
326 (setq font-lock-keywords pascal-font-lock-keywords) 326 (setq font-lock-defaults '(pascal-font-lock-keywords nil t))
327 (run-hooks 'pascal-mode-hook)) 327 (run-hooks 'pascal-mode-hook))
328 328
329 329