diff options
| author | Richard M. Stallman | 1995-03-13 05:25:21 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-03-13 05:25:21 +0000 |
| commit | 752e8dd9c81f9cdb9c013aa35a7711715a18ef1a (patch) | |
| tree | d2a9c71a11d74d84579b375a8bea0cd2170d414a | |
| parent | df0f2ba104c2de95c4a59d6a8668f3dd18776706 (diff) | |
| download | emacs-752e8dd9c81f9cdb9c013aa35a7711715a18ef1a.tar.gz emacs-752e8dd9c81f9cdb9c013aa35a7711715a18ef1a.zip | |
(c-mode): Make comment-multi-line t locally.
| -rw-r--r-- | lisp/progmodes/c-mode.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/progmodes/c-mode.el b/lisp/progmodes/c-mode.el index 97945336adc..244f77a9596 100644 --- a/lisp/progmodes/c-mode.el +++ b/lisp/progmodes/c-mode.el | |||
| @@ -247,6 +247,8 @@ if that value is non-nil." | |||
| 247 | (setq comment-start-skip "/\\*+ *") | 247 | (setq comment-start-skip "/\\*+ *") |
| 248 | (make-local-variable 'comment-indent-function) | 248 | (make-local-variable 'comment-indent-function) |
| 249 | (setq comment-indent-function 'c-comment-indent) | 249 | (setq comment-indent-function 'c-comment-indent) |
| 250 | (make-local-variable 'comment-multi-line) | ||
| 251 | (setq comment-multi-line t) | ||
| 250 | (make-local-variable 'parse-sexp-ignore-comments) | 252 | (make-local-variable 'parse-sexp-ignore-comments) |
| 251 | (setq parse-sexp-ignore-comments t) | 253 | (setq parse-sexp-ignore-comments t) |
| 252 | (run-hooks 'c-mode-hook)) | 254 | (run-hooks 'c-mode-hook)) |