diff lisp/emacs-lisp/lisp-mode.el @ 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 ea15aa9bae36
children c932ad13ccd9
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)