1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 22:41:06 -08:00

(lisp-mode-variables): In comment-start-skip,

reject semicolon after a backslash.
This commit is contained in:
Richard M. Stallman 1994-04-24 08:33:40 +00:00
parent c09655bc3c
commit 5dcaa9baed

View file

@ -100,7 +100,7 @@
(make-local-variable 'comment-start)
(setq comment-start ";")
(make-local-variable 'comment-start-skip)
(setq comment-start-skip ";+ *")
(setq comment-start-skip "\\(^;\\|[^\\];\\) *")
(make-local-variable 'comment-column)
(setq comment-column 40)
(make-local-variable 'comment-indent-function)