# HG changeset patch # User Richard M. Stallman # Date 823542202 0 # Node ID fc4be3d538e0e8e6c2f6bd6f2b661ee382bb19a9 # Parent f2dda0ebfe1ab0ba5d4c90f0fae006a02cfcae32 (lisp-mode-variables): Locally clear adaptive-fill-mode. diff -r f2dda0ebfe1a -r fc4be3d538e0 lisp/emacs-lisp/lisp-mode.el --- 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)