diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-03-08 02:15:05 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-03-08 02:15:05 +0000 |
commit | d8a8cbe26cfb2e0a72c14ad283e074fb723d6c6c (patch) | |
tree | 175d58fd548bb5b982298602b55bfa354411634a /lisp/emacs-lisp/lisp-mode.el | |
parent | f5f95edfe3828fb1352778fdd16d1a545b32c717 (diff) | |
download | emacs-d8a8cbe26cfb2e0a72c14ad283e074fb723d6c6c.tar.gz emacs-d8a8cbe26cfb2e0a72c14ad283e074fb723d6c6c.tar.bz2 emacs-d8a8cbe26cfb2e0a72c14ad283e074fb723d6c6c.zip |
(lisp-mode-variables): Set it.
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-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 @@ ;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands -;; Copyright (C) 1985, 1986, 1999, 2000, 2001, 2003 Free Software Foundation, Inc. +;; Copyright (C) 1985,86,1999,2000,01,03,2004 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: lisp, languages @@ -197,6 +197,8 @@ (setq comment-column 40) (make-local-variable 'comment-indent-function) (setq comment-indent-function 'lisp-comment-indent) + ;; Don't get confused by `;' in doc strings when paragraph-filling. + (set (make-local-variable 'comment-use-global-state) t) (make-local-variable 'imenu-generic-expression) (setq imenu-generic-expression lisp-imenu-generic-expression) (make-local-variable 'multibyte-syntax-as-symbol) |