From: Michael Orlitzky Date: Fri, 9 Apr 2010 15:20:02 +0000 (-0400) Subject: Added a value for comment-start-skip. X-Git-Tag: v0.1~9 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=nagios-mode.git;a=commitdiff_plain;h=60bd3688e6a238c56f1eaf94aba651023786d40c Added a value for comment-start-skip. --- diff --git a/nagios-mode.el b/nagios-mode.el index 291b0eb..a284c62 100644 --- a/nagios-mode.el +++ b/nagios-mode.el @@ -292,6 +292,7 @@ (kill-all-local-variables) (make-local-variable 'font-lock-defaults) (make-local-variable 'comment-start) + (make-local-variable 'comment-start-skip) (make-local-variable 'comment-end) (make-local-variable 'indent-line-function) @@ -302,6 +303,7 @@ indent-line-function 'nagios-indent-line font-lock-defaults '(nagios-font-lock-keywords) comment-start "#" + comment-start-skip "#\|; +" comment-end "" )