summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-12-07 20:33:22 +0000
committerRichard M. Stallman <rms@gnu.org>1996-12-07 20:33:22 +0000
commit1ab3c914dbc8ae9ed3cca9af94ab0e26cbe2e66b (patch)
tree9bc149072d012d7948c7beb0c1e3b32e1da376a4
parentae1b301f1082918868de296be6f3ac4790aeed9f (diff)
downloademacs-1ab3c914dbc8ae9ed3cca9af94ab0e26cbe2e66b.tar.gz
(pascal-mode): Make comment-indent-function buffer local.
-rw-r--r--lisp/progmodes/pascal.el1
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)