diff options
| author | Simon Pugnet <simon@polaris64.net> | 2022-03-02 16:25:29 +0000 |
|---|---|---|
| committer | Tom Dalziel <33435574+tomdl89@users.noreply.github.com> | 2022-03-02 18:26:30 +0100 |
| commit | 2ba00479db3f71f46444733c0edc5f8d16155b69 (patch) | |
| tree | bb45e14280b2bd34b29ead23faff56b82f45452f | |
| parent | 00fca685479e772361765b13de4689099a328c28 (diff) | |
evil-fold-action: add missing FORMAT argument to with-demoted-errors
* evil-commands.el (evil-fold-action): add FORMAT argument which is
now required as of Emacs commit
d52c929e31f60ff0462371bfe27ebd479e3e82bd.
| -rw-r--r-- | evil-commands.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/evil-commands.el b/evil-commands.el index ff8ee3f..12d1148 100644 --- a/evil-commands.el +++ b/evil-commands.el @@ -3065,7 +3065,7 @@ not interfere with another." (let* ((actions (cdar list)) (fn (plist-get actions action))) (when fn - (with-demoted-errors (funcall fn)))) + (with-demoted-errors "Error: %S" (funcall fn)))) (evil-fold-action (cdr list) action))))) (defun evil--mode-p (modes) |
