branch: master commit 2ab9c5475be259da963e4b518505b9a43c46590f Author: Oleh Krehel <ohwoeo...@gmail.com> Commit: Oleh Krehel <ohwoeo...@gmail.com>
ivy.el (ivy--switch-buffer-matcher): Fix --- ivy.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ivy.el b/ivy.el index 76a4f58..386f01c 100644 --- a/ivy.el +++ b/ivy.el @@ -2564,7 +2564,7 @@ Skip buffers that match `ivy-ignore-buffers'." (cl-find-if (lambda (f-or-r) (if (functionp f-or-r) - (funcall ff buf) + (funcall f-or-r buf) (string-match-p f-or-r buf))) ivy-ignore-buffers)) res)