Mercurial > emacs
changeset 10986:7e797580a46d
(c-mode): Make comment-multi-line t locally.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 13 Mar 1995 05:25:21 +0000 |
parents | d917a965cb47 |
children | 1c47aad4c1c7 |
files | lisp/progmodes/c-mode.el |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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))