diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-07-19 21:58:03 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-07-19 21:58:03 +0000 |
commit | a8fa6fc27464db07422fdb2223c9b1d5a192a62f (patch) | |
tree | 5afcba01a587666f2815fd6039b286d24bb419b4 | |
parent | e26d162106b39af852923907521a0dc7dc2411ba (diff) | |
download | emacs-a8fa6fc27464db07422fdb2223c9b1d5a192a62f.tar.gz |
(sh-mode): parse-sexp-ignore-comments = t.
-rw-r--r-- | lisp/progmodes/sh-script.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index 8b5e1d5deb0..acae86db2f3 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el @@ -759,6 +759,8 @@ with your script for an edit-interpret-debug cycle." (current-column))))) skeleton-filter 'sh-feature skeleton-newline-indent-rigidly t) + (make-local-variable 'parse-sexp-ignore-comments) + (setq parse-sexp-ignore-comments t) ;; Parse or insert magic number for exec, and set all variables depending ;; on the shell thus determined. (let ((interpreter |