Mercurial > emacs
changeset 14495:fc4be3d538e0
(lisp-mode-variables): Locally clear adaptive-fill-mode.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 05 Feb 1996 17:43:22 +0000 |
parents | f2dda0ebfe1a |
children | beca72fdb420 |
files | lisp/emacs-lisp/lisp-mode.el |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp-mode.el Mon Feb 05 00:23:03 1996 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Mon Feb 05 17:43:22 1996 +0000 @@ -103,6 +103,11 @@ (setq paragraph-ignore-fill-prefix t) (make-local-variable 'fill-paragraph-function) (setq fill-paragraph-function 'lisp-fill-paragraph) + ;; Adaptive fill mode gets in the way of auto-fill, + ;; and should make no difference for explicit fill + ;; because lisp-fill-paragraph should do the job. + (make-local-variable 'adaptive-fill-mode) + (setq adaptive-fill-mode nil) (make-local-variable 'indent-line-function) (setq indent-line-function 'lisp-indent-line) (make-local-variable 'indent-region-function)