comparison lisp/emacs-lisp/lisp-mode.el @ 7079:5b975a51928f

(lisp-mode-variables): In comment-start-skip, reject semicolon after a backslash.
author Richard M. Stallman <rms@gnu.org>
date Sun, 24 Apr 1994 08:33:40 +0000
parents 4f76564fc2cd
children 3b452d97f111
comparison
equal deleted inserted replaced
7078:cf120e7b7d2c 7079:5b975a51928f
98 (make-local-variable 'outline-regexp) 98 (make-local-variable 'outline-regexp)
99 (setq outline-regexp ";;; \|(....") 99 (setq outline-regexp ";;; \|(....")
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)
107 (setq comment-indent-function 'lisp-comment-indent)) 107 (setq comment-indent-function 'lisp-comment-indent))
108 108