diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-02-12 02:17:58 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-02-12 02:17:58 +0000 |
commit | 7ac7f4c2001f3b0ac1c137d931f503d2384b71f6 (patch) | |
tree | 01554cd7578a3541a1e0aea3115d97ec927c63af /lisp/progmodes/perl-mode.el | |
parent | 918a80cf33f67d15835cd303ea569a132c5db4d2 (diff) | |
download | emacs-7ac7f4c2001f3b0ac1c137d931f503d2384b71f6.tar.gz |
(perl-mode): Set parse-sexp-ignore-comments.
Diffstat (limited to 'lisp/progmodes/perl-mode.el')
-rw-r--r-- | lisp/progmodes/perl-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/perl-mode.el b/lisp/progmodes/perl-mode.el index 8d39251bdf8..ac2c260ad0b 100644 --- a/lisp/progmodes/perl-mode.el +++ b/lisp/progmodes/perl-mode.el @@ -248,7 +248,7 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'." (make-local-variable 'comment-indent-function) (setq comment-indent-function 'perl-comment-indent) (make-local-variable 'parse-sexp-ignore-comments) - (setq parse-sexp-ignore-comments nil) + (setq parse-sexp-ignore-comments t) (run-hooks 'perl-mode-hook)) ;; This is used by indent-for-comment |