diff options
| author | Richard M. Stallman | 1994-04-24 08:33:40 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-04-24 08:33:40 +0000 |
| commit | 5dcaa9baed38bc09400d7806c6c50edefecfb2fb (patch) | |
| tree | d4aaa06bdb806378ecdc1d351bcc85a03173df31 | |
| parent | c09655bc3cb490cda5eef6414974c36e311136e1 (diff) | |
| download | emacs-5dcaa9baed38bc09400d7806c6c50edefecfb2fb.tar.gz emacs-5dcaa9baed38bc09400d7806c6c50edefecfb2fb.zip | |
(lisp-mode-variables): In comment-start-skip,
reject semicolon after a backslash.
| -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 @@ | |||
| 100 | (make-local-variable 'comment-start) | 100 | (make-local-variable 'comment-start) |
| 101 | (setq comment-start ";") | 101 | (setq comment-start ";") |
| 102 | (make-local-variable 'comment-start-skip) | 102 | (make-local-variable 'comment-start-skip) |
| 103 | (setq comment-start-skip ";+ *") | 103 | (setq comment-start-skip "\\(^;\\|[^\\];\\) *") |
| 104 | (make-local-variable 'comment-column) | 104 | (make-local-variable 'comment-column) |
| 105 | (setq comment-column 40) | 105 | (setq comment-column 40) |
| 106 | (make-local-variable 'comment-indent-function) | 106 | (make-local-variable 'comment-indent-function) |