aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 b1bee65b7fe..3dc29088d84 100644
--- a/lisp/gnus/message.el
+++ b/lisp/gnus/message.el
@@ -3092,8 +3092,8 @@ M-RET `message-newline-and-reformat' (break the line and reformat)."
3092 ;; `electric-pair-mode', and C-M-* navigation by syntactically 3092 ;; `electric-pair-mode', and C-M-* navigation by syntactically
3093 ;; excluding citations and other artifacts. 3093 ;; excluding citations and other artifacts.
3094 ;; 3094 ;;
3095 (setq-local syntax-propertize-function 'message--syntax-propertize) 3095 (set (make-local-variable 'syntax-propertize-function) 'message--syntax-propertize)
3096 (setq-local parse-sexp-ignore-comments t)) 3096 (set (make-local-variable 'parse-sexp-ignore-comments) t))
3097 3097
3098(defun message-setup-fill-variables () 3098(defun message-setup-fill-variables ()
3099 "Setup message fill variables." 3099 "Setup message fill variables."