aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1997-08-24 03:15:05 +0000
committerRichard M. Stallman <[email protected]>1997-08-24 03:15:05 +0000
commit5ed14933028357c40c160bd1b0fa66def9012b6c (patch)
tree3f6e1ca74b5406a385f792625c590de66d8e9ba4
parent79fd9b2f5cf65f2d901419991c08aa74efa07571 (diff)
(texinfo-mode): Turn off adaptive-fill-mode.
-rw-r--r--lisp/textmodes/texinfo.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el
index 9e1099f4b8..eb2e5a6086 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)