]> git.eshelyaron.com Git - emacs.git/commitdiff
(c-mode): Make comment-multi-line t locally.
authorRichard M. Stallman <rms@gnu.org>
Mon, 13 Mar 1995 05:25:21 +0000 (05:25 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 13 Mar 1995 05:25:21 +0000 (05:25 +0000)
lisp/progmodes/c-mode.el

index 97945336adcadd4d824e41a0491bd43d5040aa96..244f77a9596388573f3151dddc94d2815c62d421 100644 (file)
@@ -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))