# HG changeset patch # User Richard M. Stallman # Date 767176420 0 # Node ID 5b975a51928fe567bca87978fc69e8999ddd9a65 # Parent cf120e7b7d2c98c7d32c19d66dfde3ec399aa5a8 (lisp-mode-variables): In comment-start-skip, reject semicolon after a backslash. diff -r cf120e7b7d2c -r 5b975a51928f lisp/emacs-lisp/lisp-mode.el --- a/lisp/emacs-lisp/lisp-mode.el Sun Apr 24 08:32:32 1994 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Sun Apr 24 08:33:40 1994 +0000 @@ -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)