# HG changeset patch # User Richard M. Stallman # Date 839629906 0 # Node ID 8d8800822c781185c7ad0afa0fb154d80568f09b # Parent 9aaeb5dc28513ed522c635b80a27315581c1bbb6 (bibtex-mode): Set normal-auto-fill-function locally; don't set auto-fill-function. Don't turn on Auto Fill mode. diff -r 9aaeb5dc2851 -r 8d8800822c78 lisp/textmodes/bibtex.el --- a/lisp/textmodes/bibtex.el Fri Aug 09 22:04:54 1996 +0000 +++ b/lisp/textmodes/bibtex.el Fri Aug 09 22:31:46 1996 +0000 @@ -1487,8 +1487,8 @@ (setq paragraph-start "[ \f\n\t]*$") (make-local-variable 'comment-start) (setq comment-start "%") - (auto-fill-mode 1) - (setq auto-fill-function 'bibtex-auto-fill-function) + (make-local-variable 'normal-auto-fill-function) + (setq normal-auto-fill-function 'bibtex-auto-fill-function) (set (make-local-variable 'font-lock-defaults) '(bibtex-font-lock-keywords nil t ((?$ . "\"")