]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix typo in message-setup-fill-variables
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 23 Feb 2016 09:58:54 +0000 (20:58 +1100)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 23 Feb 2016 09:58:54 +0000 (20:58 +1100)
* lisp/gnus/message.el (message-setup-fill-variables): Fix
typo in a recent checkin that used `setq-default' instead of
`setq-local' (bug#22781).

lisp/gnus/message.el

index 0ac3926eb4f0738c63d7f5ee3f5e7405eec4ce3a..d4313e0b2f9e07299a29c1b6533108a817413e71 100644 (file)
@@ -3023,8 +3023,8 @@ M-RET    `message-newline-and-reformat' (break the line and reformat)."
     (setq adaptive-fill-first-line-regexp
          (concat quote-prefix-regexp "\\|"
                  adaptive-fill-first-line-regexp)))
-  (setq-default auto-fill-inhibit-regexp nil)
-  (setq-default normal-auto-fill-function 'message-do-auto-fill))
+  (setq-local auto-fill-inhibit-regexp nil)
+  (setq-local normal-auto-fill-function 'message-do-auto-fill))
 
 \f