aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2016-02-23 20:58:54 +1100
committerLars Ingebrigtsen2016-02-23 20:58:54 +1100
commitc399756dda232efa8eebdd105d7d466cff02589a (patch)
tree09de3f1bf304cf2258697f842dfeb00bde16f4d9
parentd9ab2503b1279f31817316af0bf2ab6e188e2b75 (diff)
downloademacs-c399756dda232efa8eebdd105d7d466cff02589a.tar.gz
emacs-c399756dda232efa8eebdd105d7d466cff02589a.zip
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).
-rw-r--r--lisp/gnus/message.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el
index 0ac3926eb4f..d4313e0b2f9 100644
--- a/lisp/gnus/message.el
+++ b/lisp/gnus/message.el
@@ -3023,8 +3023,8 @@ M-RET `message-newline-and-reformat' (break the line and reformat)."
3023 (setq adaptive-fill-first-line-regexp 3023 (setq adaptive-fill-first-line-regexp
3024 (concat quote-prefix-regexp "\\|" 3024 (concat quote-prefix-regexp "\\|"
3025 adaptive-fill-first-line-regexp))) 3025 adaptive-fill-first-line-regexp)))
3026 (setq-default auto-fill-inhibit-regexp nil) 3026 (setq-local auto-fill-inhibit-regexp nil)
3027 (setq-default normal-auto-fill-function 'message-do-auto-fill)) 3027 (setq-local normal-auto-fill-function 'message-do-auto-fill))
3028 3028
3029 3029
3030 3030