From: Noam Postavsky Date: Fri, 26 Jul 2019 12:47:39 +0000 (-0400) Subject: * lisp/mail/footnote.el (footnote--local-advice): Add missing comma. X-Git-Tag: emacs-27.0.90~1817^2~97 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6778dbdaae048f2d52ddfbb2bdbd7576293485ed;p=emacs.git * lisp/mail/footnote.el (footnote--local-advice): Add missing comma. --- diff --git a/lisp/mail/footnote.el b/lisp/mail/footnote.el index 202e5528060..fc74122ecd2 100644 --- a/lisp/mail/footnote.el +++ b/lisp/mail/footnote.el @@ -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))))