comparison lisp/progmodes/awk-mode.el @ 17913:c0e681b163ce

(awk-mode): Set parse-sexp-ignore-comments.
author Richard M. Stallman <rms@gnu.org>
date Thu, 22 May 1997 00:40:45 +0000
parents 0e181c85b17e
children c7ba19cdcf30
comparison
equal deleted inserted replaced
17912:653987823f79 17913:c0e681b163ce
142 (setq comment-column 32) 142 (setq comment-column 32)
143 (make-local-variable 'comment-start-skip) 143 (make-local-variable 'comment-start-skip)
144 (setq comment-start-skip "#+ *") 144 (setq comment-start-skip "#+ *")
145 (make-local-variable 'comment-indent-function) 145 (make-local-variable 'comment-indent-function)
146 (setq comment-indent-function 'c-comment-indent) 146 (setq comment-indent-function 'c-comment-indent)
147 (make-local-variable 'parse-sexp-ignore-comments)
148 (setq parse-sexp-ignore-comments t)
147 (make-local-variable 'font-lock-defaults) 149 (make-local-variable 'font-lock-defaults)
148 (setq font-lock-defaults '(awk-font-lock-keywords nil nil ((?_ . "w")))) 150 (setq font-lock-defaults '(awk-font-lock-keywords nil nil ((?_ . "w"))))
149 (run-hooks 'awk-mode-hook)) 151 (run-hooks 'awk-mode-hook))
150 152
151 (provide 'awk-mode) 153 (provide 'awk-mode)