From: Richard M. Stallman Date: Mon, 13 Mar 1995 05:25:21 +0000 (+0000) Subject: (c-mode): Make comment-multi-line t locally. X-Git-Tag: emacs-19.34~4872 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=752e8dd9c81f9cdb9c013aa35a7711715a18ef1a;p=emacs.git (c-mode): Make comment-multi-line t locally. --- 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." (setq comment-start-skip "/\\*+ *") (make-local-variable 'comment-indent-function) (setq comment-indent-function 'c-comment-indent) + (make-local-variable 'comment-multi-line) + (setq comment-multi-line t) (make-local-variable 'parse-sexp-ignore-comments) (setq parse-sexp-ignore-comments t) (run-hooks 'c-mode-hook))