From: Stefan Monnier Date: Fri, 29 Sep 2000 03:32:40 +0000 (+0000) Subject: (perl-mode): Don't gratuitously override the default for comment-column. X-Git-Tag: emacs-pretest-21.0.90~1296 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=be5e3be3acf8bc9d9b55fb6f84b5c665b530f503;p=emacs.git (perl-mode): Don't gratuitously override the default for comment-column. --- diff --git a/lisp/progmodes/perl-mode.el b/lisp/progmodes/perl-mode.el index 2ae0f6b8575..189b11922aa 100644 --- a/lisp/progmodes/perl-mode.el +++ b/lisp/progmodes/perl-mode.el @@ -338,8 +338,6 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'." (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 "\\(^\\|\\s-\\);?#+ *") (make-local-variable 'comment-indent-function)