Fix typo in message-setup-fill-variables

* lisp/gnus/message.el (message-setup-fill-variables): Fix
typo in a recent checkin that used `setq-default' instead of
`setq-local' (bug#22781).
This commit is contained in:
Lars Ingebrigtsen 2016-02-23 20:58:54 +11:00
parent d9ab2503b1
commit c399756dda

View 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))