diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-12-07 20:33:22 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-12-07 20:33:22 +0000 |
commit | e7e09325ce3b5313ee22f7ea0ec8251e777f03e9 (patch) | |
tree | 879cc14ffe8bb80cd8725b0b84550514ce41019f /lisp/progmodes/pascal.el | |
parent | 6a16c4cb00e22e3b75569ce09acc4aa2da536d56 (diff) | |
download | emacs-e7e09325ce3b5313ee22f7ea0ec8251e777f03e9.tar.gz emacs-e7e09325ce3b5313ee22f7ea0ec8251e777f03e9.tar.bz2 emacs-e7e09325ce3b5313ee22f7ea0ec8251e777f03e9.zip |
(pascal-mode): Make comment-indent-function buffer local.
Diffstat (limited to 'lisp/progmodes/pascal.el')
-rw-r--r-- | lisp/progmodes/pascal.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/progmodes/pascal.el b/lisp/progmodes/pascal.el index d3474619089..1055e692689 100644 --- a/lisp/progmodes/pascal.el +++ b/lisp/progmodes/pascal.el @@ -317,6 +317,7 @@ no args, if that value is non-nil." (set-syntax-table pascal-mode-syntax-table) (make-local-variable 'indent-line-function) (setq indent-line-function 'pascal-indent-line) + (make-local-variable 'comment-indent-function) (setq comment-indent-function 'pascal-indent-comment) (make-local-variable 'parse-sexp-ignore-comments) (setq parse-sexp-ignore-comments nil) |