diff options
| author | Stefan Monnier | 2004-03-08 02:15:05 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-03-08 02:15:05 +0000 |
| commit | d8a8cbe26cfb2e0a72c14ad283e074fb723d6c6c (patch) | |
| tree | 175d58fd548bb5b982298602b55bfa354411634a | |
| parent | f5f95edfe3828fb1352778fdd16d1a545b32c717 (diff) | |
| download | emacs-d8a8cbe26cfb2e0a72c14ad283e074fb723d6c6c.tar.gz emacs-d8a8cbe26cfb2e0a72c14ad283e074fb723d6c6c.zip | |
(lisp-mode-variables): Set it.
| -rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index c2dc3e6a16c..6b50318d3e6 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands | 1 | ;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1985, 1986, 1999, 2000, 2001, 2003 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1985,86,1999,2000,01,03,2004 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Maintainer: FSF | 5 | ;; Maintainer: FSF |
| 6 | ;; Keywords: lisp, languages | 6 | ;; Keywords: lisp, languages |
| @@ -197,6 +197,8 @@ | |||
| 197 | (setq comment-column 40) | 197 | (setq comment-column 40) |
| 198 | (make-local-variable 'comment-indent-function) | 198 | (make-local-variable 'comment-indent-function) |
| 199 | (setq comment-indent-function 'lisp-comment-indent) | 199 | (setq comment-indent-function 'lisp-comment-indent) |
| 200 | ;; Don't get confused by `;' in doc strings when paragraph-filling. | ||
| 201 | (set (make-local-variable 'comment-use-global-state) t) | ||
| 200 | (make-local-variable 'imenu-generic-expression) | 202 | (make-local-variable 'imenu-generic-expression) |
| 201 | (setq imenu-generic-expression lisp-imenu-generic-expression) | 203 | (setq imenu-generic-expression lisp-imenu-generic-expression) |
| 202 | (make-local-variable 'multibyte-syntax-as-symbol) | 204 | (make-local-variable 'multibyte-syntax-as-symbol) |