Mercurial > emacs
comparison lisp/emacs-lisp/lisp-mode.el @ 7170:3b452d97f111
(lisp-mode-variables): Undo previous change.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 28 Apr 1994 08:09:01 +0000 |
parents | 5b975a51928f |
children | edad1db699ab |
comparison
equal
deleted
inserted
replaced
7169:c21fcad6f1f5 | 7170:3b452d97f111 |
---|---|
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 |