Mercurial > emacs
changeset 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 | 653987823f79 |
children | e5e2ef0dd5ab |
files | lisp/progmodes/awk-mode.el |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/awk-mode.el Wed May 21 20:07:20 1997 +0000 +++ b/lisp/progmodes/awk-mode.el Thu May 22 00:40:45 1997 +0000 @@ -144,6 +144,8 @@ (setq comment-start-skip "#+ *") (make-local-variable 'comment-indent-function) (setq comment-indent-function 'c-comment-indent) + (make-local-variable 'parse-sexp-ignore-comments) + (setq parse-sexp-ignore-comments t) (make-local-variable 'font-lock-defaults) (setq font-lock-defaults '(awk-font-lock-keywords nil nil ((?_ . "w")))) (run-hooks 'awk-mode-hook))