emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master ba849e5 173/399: ivy.el (ivy--re-filter): Fix for ivy--reg


From: Oleh Krehel
Subject: [elpa] master ba849e5 173/399: ivy.el (ivy--re-filter): Fix for ivy--regex-ignore-order
Date: Sat, 20 Jul 2019 14:57:17 -0400 (EDT)

branch: master
commit ba849e569c2d529be4a55e249f1f0deb3779cc08
Author: Oleh Krehel <address@hidden>
Commit: Oleh Krehel <address@hidden>

    ivy.el (ivy--re-filter): Fix for ivy--regex-ignore-order
    
    Fixes #2015
---
 ivy.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ivy.el b/ivy.el
index 3d917d2..5dc89d9 100644
--- a/ivy.el
+++ b/ivy.el
@@ -3051,7 +3051,7 @@ In any Ivy completion session, the case folding starts 
with
 RE is a list of cons cells, with a regexp car and a boolean cdr.
 When the cdr is t, the car must match.
 Otherwise, the car must not match."
-  (if (string= re "")
+  (if (equal re "")
       candidates
     (ignore-errors
       (dolist (re (if (stringp re) (list (cons re t)) re))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]