diff options
author | David Morgan <djm_uk@protonmail.com> | 2021-09-10 19:55:18 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2021-09-10 19:55:18 +0100 |
commit | bc0f5f9c24447dbaa88b8d2ff446b1533f84ce49 (patch) | |
tree | f15802ed1be5a4d772eb3615f20fe483aae51137 /.emacs.d/lisp/init-minibuffer.el | |
parent | 543ed1f1ac2734a6b860448781a672a9d7415f15 (diff) | |
download | dotfiles-bc0f5f9c24447dbaa88b8d2ff446b1533f84ce49.tar.gz |
Fix warning
Diffstat (limited to '.emacs.d/lisp/init-minibuffer.el')
-rw-r--r-- | .emacs.d/lisp/init-minibuffer.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-minibuffer.el b/.emacs.d/lisp/init-minibuffer.el index 5cfbd38..45b4fbc 100644 --- a/.emacs.d/lisp/init-minibuffer.el +++ b/.emacs.d/lisp/init-minibuffer.el @@ -19,8 +19,8 @@ (vertico-mode) (setq vertico-cycle t) (advice-add #'vertico--format-candidate :around - (lambda (orig cand prefix suffix index _start) - (setq cand (funcall orig cand prefix suffix index _start)) + (lambda (orig cand prefix suffix index start) + (setq cand (funcall orig cand prefix suffix index start)) (concat (if (= vertico--index index) (propertize "ยป " 'face 'vertico-current) |