# HG changeset patch # User Richard M. Stallman # Date 795072321 0 # Node ID 7e797580a46d94296c4ce5cedaaf5312baa461de # Parent d917a965cb47cb1bf458ba5e40d80bd44dbb2a9f (c-mode): Make comment-multi-line t locally. diff -r d917a965cb47 -r 7e797580a46d lisp/progmodes/c-mode.el --- a/lisp/progmodes/c-mode.el Mon Mar 13 03:09:40 1995 +0000 +++ b/lisp/progmodes/c-mode.el Mon Mar 13 05:25:21 1995 +0000 @@ -247,6 +247,8 @@ (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))