From: Stefan Monnier Date: Sun, 1 Oct 2000 00:53:23 +0000 (+0000) Subject: (c-mode): Don't gratuitously override the default for comment-column. X-Git-Tag: emacs-pretest-21.0.90~1242 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7b8f3241f1fa840babf269a1a1270d4f12518d63;p=emacs.git (c-mode): Don't gratuitously override the default for comment-column. --- diff --git a/lisp/progmodes/c-mode.el b/lisp/progmodes/c-mode.el index 977e5e0b5e9..2be4ea9ed18 100644 --- a/lisp/progmodes/c-mode.el +++ b/lisp/progmodes/c-mode.el @@ -375,8 +375,6 @@ if that value is non-nil." (setq comment-start "/* ") (make-local-variable 'comment-end) (setq comment-end " */") - (make-local-variable 'comment-column) - (setq comment-column 32) (make-local-variable 'comment-start-skip) (setq comment-start-skip "/\\*+ *") (make-local-variable 'comment-indent-function)