diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2010-05-14 12:41:01 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2010-05-14 12:41:01 -0400 |
commit | 10dcc5612a47d4a6ab9f05c1e8f39993b16bb634 (patch) | |
tree | b54836fe5cdf3146b310b0cafbb1c0728dc51921 /lisp/progmodes/sh-script.el | |
parent | 2fe72643a04d063444b0eba90d77e15fcf6d751f (diff) | |
download | emacs-10dcc5612a47d4a6ab9f05c1e8f39993b16bb634.tar.gz |
* simple.el (prog-mode): New (abstract) major mode.
* emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
* progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
Diffstat (limited to 'lisp/progmodes/sh-script.el')
-rw-r--r-- | lisp/progmodes/sh-script.el | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index eca6d5fbe7b..478b0e33431 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el @@ -1583,7 +1583,6 @@ with your script for an edit-interpret-debug cycle." sh-indent-supported-here nil) (set (make-local-variable 'defun-prompt-regexp) (concat "^\\(function[ \t]\\|[[:alnum:]]+[ \t]+()[ \t]+\\)")) - (set (make-local-variable 'parse-sexp-ignore-comments) t) ;; Parse or insert magic number for exec, and set all variables depending ;; on the shell thus determined. (sh-set-shell |