(lisp-mode-variables): Set font-lock-comment-start-skip.
authorRichard M. Stallman <rms@gnu.org>
Sun, 15 May 2005 14:29:25 +0000 (14:29 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 15 May 2005 14:29:25 +0000 (14:29 +0000)
lisp/emacs-lisp/lisp-mode.el

index 8f4245c..bb81548 100644 (file)
   ;; Look within the line for a ; following an even number of backslashes
   ;; after either a non-backslash or the line beginning.
   (setq comment-start-skip "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\);+ *")
+  (make-local-variable 'font-lock-comment-start-skip)
+  ;; Font lock mode uses this only when it KNOWS a comment is starting.
+  (setq font-lock-comment-start-skip ";+ *") 
   (make-local-variable 'comment-add)
   (setq comment-add 1)                 ;default to `;;' in comment-region
   (make-local-variable 'comment-column)