diff options
| author | Noam Postavsky | 2019-07-26 08:47:39 -0400 |
|---|---|---|
| committer | Noam Postavsky | 2019-07-26 08:47:39 -0400 |
| commit | 6778dbdaae048f2d52ddfbb2bdbd7576293485ed (patch) | |
| tree | daa4469bdfef24bf834efa28e203db64ef2767b5 | |
| parent | e986ba1968ad221be3150e4b4cd51a345e980e3b (diff) | |
| download | emacs-6778dbdaae048f2d52ddfbb2bdbd7576293485ed.tar.gz emacs-6778dbdaae048f2d52ddfbb2bdbd7576293485ed.zip | |
* lisp/mail/footnote.el (footnote--local-advice): Add missing comma.
| -rw-r--r-- | lisp/mail/footnote.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." | |||
| 868 | ;; nil and `ignore' have the same semantics for adaptive-fill-function, | 868 | ;; nil and `ignore' have the same semantics for adaptive-fill-function, |
| 869 | ;; but only `ignore' behaves correctly with add/remove-function. | 869 | ;; but only `ignore' behaves correctly with add/remove-function. |
| 870 | (setq-local ,variable #'ignore)) | 870 | (setq-local ,variable #'ignore)) |
| 871 | (remove-function (local ',variable) #'function) | 871 | (remove-function (local ',variable) #',function) |
| 872 | (when ,mode | 872 | (when ,mode |
| 873 | (add-function :around (local ',variable) | 873 | (add-function :around (local ',variable) |
| 874 | #',function)))) | 874 | #',function)))) |