summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-08-09 22:31:46 +0000
committerRichard M. Stallman <rms@gnu.org>1996-08-09 22:31:46 +0000
commitf7863171769dd275c05b13ddb6c15bf0a1bf2d28 (patch)
tree11781ece8ffcbf793c0ac909f89c2b13b04110d2
parentd10673de8ba26fb5dee680e404372e2a26e0f67f (diff)
downloademacs-f7863171769dd275c05b13ddb6c15bf0a1bf2d28.tar.gz
(bibtex-mode): Set normal-auto-fill-function locally;
don't set auto-fill-function. Don't turn on Auto Fill mode.
-rw-r--r--lisp/textmodes/bibtex.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el
index 0217825736c..f41f48951fe 100644
--- a/lisp/textmodes/bibtex.el
+++ b/lisp/textmodes/bibtex.el
@@ -1487,8 +1487,8 @@ non-nil."
(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 ((?$ . "\"")