From Katsumi Yamaoka <yamaoka@jpl.org>:
authorKai Grossjohann <kgrossjo@eu.uu.net>
Tue, 16 Oct 2001 12:55:17 +0000 (12:55 +0000)
committerKai Grossjohann <kgrossjo@eu.uu.net>
Tue, 16 Oct 2001 12:55:17 +0000 (12:55 +0000)
(message-setup-fill-variables): Use
`normal-auto-fill-function' instead of `auto-fill-function'.

lisp/ChangeLog
lisp/message.el

index fdf4cb0..b0fae58 100644 (file)
@@ -1,3 +1,9 @@
+2001-10-16  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
+       From Katsumi Yamaoka  <yamaoka@jpl.org>.
+
+       * message.el (message-setup-fill-variables): Use
+       `normal-auto-fill-function' instead of `auto-fill-function'.
+
 2001-10-16  Simon Josefsson  <jas@extundo.com>
 
        * mml2015.el (mml2015-fix-micalg): Fix for Mutt-bug.
index 620100a..730d6e2 100644 (file)
@@ -1637,6 +1637,7 @@ M-RET    `message-newline-and-reformat' (break the line and reformat)."
     (setq adaptive-fill-first-line-regexp nil))
   (make-local-variable 'adaptive-fill-first-line-regexp)
   (make-local-variable 'auto-fill-inhibit-regexp)
+  (make-local-variable 'normal-auto-fill-function)
   (let ((quote-prefix-regexp
         ;; User should change message-cite-prefix-regexp if
         ;; message-yank-prefix is set to an abnormal value.
@@ -1658,7 +1659,7 @@ M-RET    `message-newline-and-reformat' (break the line and reformat)."
                  adaptive-fill-first-line-regexp))
     ;;(setq auto-fill-inhibit-regexp "^[A-Z][^: \n\t]+:")
     (setq auto-fill-inhibit-regexp nil)
-    (setq auto-fill-function 'message-do-auto-fill)))
+    (setq normal-auto-fill-function 'message-do-auto-fill)))
 
 \f