]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't use `setq-local' in Gnus code
authorJoão Távora <joaotavora@gmail.com>
Sun, 12 Apr 2015 22:23:44 +0000 (23:23 +0100)
committerJoão Távora <joaotavora@gmail.com>
Sun, 12 Apr 2015 22:25:09 +0000 (23:25 +0100)
This might break upstream builds with older Emacsen

* lisp/gnus/message.el (message-mode): Use `set' and
`make-local-variable' instead of `setq-local'.

lisp/gnus/message.el

index b1bee65b7fe40ebc6b36dbea00348ea718b94ac7..3dc29088d840fd3d40d96e5a463476feb9adf632 100644 (file)
@@ -3092,8 +3092,8 @@ M-RET    `message-newline-and-reformat' (break the line and reformat)."
   ;; `electric-pair-mode', and C-M-* navigation by syntactically
   ;; excluding citations and other artifacts.
   ;;
-  (setq-local syntax-propertize-function 'message--syntax-propertize)
-  (setq-local parse-sexp-ignore-comments t))
+  (set (make-local-variable 'syntax-propertize-function) 'message--syntax-propertize)
+  (set (make-local-variable 'parse-sexp-ignore-comments) t))
 
 (defun message-setup-fill-variables ()
   "Setup message fill variables."