1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

* lisp/mail/footnote.el (footnote--local-advice): Add missing comma.

This commit is contained in:
Noam Postavsky 2019-07-26 08:47:39 -04:00
parent e986ba1968
commit 6778dbdaae

View file

@ -868,7 +868,7 @@ advice, and FUNCTION is what'll be added as an :around advice."
;; nil and `ignore' have the same semantics for adaptive-fill-function,
;; but only `ignore' behaves correctly with add/remove-function.
(setq-local ,variable #'ignore))
(remove-function (local ',variable) #'function)
(remove-function (local ',variable) #',function)
(when ,mode
(add-function :around (local ',variable)
#',function))))