]> code.delx.au - gnu-emacs-elpa/commitdiff
ivy.el (ivy--switch-buffer-matcher): Fix
authorOleh Krehel <ohwoeowho@gmail.com>
Mon, 21 Mar 2016 13:26:01 +0000 (14:26 +0100)
committerOleh Krehel <ohwoeowho@gmail.com>
Mon, 21 Mar 2016 13:26:01 +0000 (14:26 +0100)
ivy.el

diff --git a/ivy.el b/ivy.el
index 76a4f58556c4bbc7f382f46bf968a2439a30d6a0..386f01ce5634aaa900442d6e0aea157dd552daa5 100644 (file)
--- 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)