diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-04-24 08:33:40 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-04-24 08:33:40 +0000 |
commit | 6d171ec5887fd0a971529971e73cf32476aa8b53 (patch) | |
tree | f93a621908c4161f8374a44f6f6ee6c45b4c906b /lisp/emacs-lisp/lisp-mode.el | |
parent | 93ae4af97257f6091dd24f8748a79178c2e32c37 (diff) | |
download | emacs-6d171ec5887fd0a971529971e73cf32476aa8b53.tar.gz |
(lisp-mode-variables): In comment-start-skip,
reject semicolon after a backslash.
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index a488b954422..566a1053555 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -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) |