From: Richard M. Stallman Date: Sun, 24 Aug 1997 03:15:05 +0000 (+0000) Subject: (texinfo-mode): Turn off adaptive-fill-mode. X-Git-Tag: emacs-20.1~445 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5ed14933028357c40c160bd1b0fa66def9012b6c;p=emacs.git (texinfo-mode): Turn off adaptive-fill-mode. --- diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el index 9e1099f4b88..eb2e5a60862 100644 --- a/lisp/textmodes/texinfo.el +++ b/lisp/textmodes/texinfo.el @@ -496,6 +496,8 @@ value of texinfo-mode-hook." (concat "\b\\|@[a-zA-Z]*[ \n]\\|" paragraph-separate)) (make-local-variable 'paragraph-start) (setq paragraph-start (concat "\b\\|@[a-zA-Z]*[ \n]\\|" paragraph-start)) + (make-local-variable 'adaptive-fill-mode) + (setq adaptive-fill-mode nil) (make-local-variable 'fill-column) (setq fill-column 72) (make-local-variable 'comment-start)