branch: externals/ebdb
commit 8cdb1d11c24f36d12e8e46a4f4c180dcd4bcb3a6
Author: Eric Abrahamsen <[email protected]>
Commit: Eric Abrahamsen <[email protected]>
Fix bug in ebdb-char-fold-search logic
* ebdb.el (ebdb-search): Parenthesis has to go all the way around,
smart guy.
---
ebdb.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ebdb.el b/ebdb.el
index ad0334f..77fb157 100644
--- a/ebdb.el
+++ b/ebdb.el
@@ -4990,8 +4990,8 @@ interpreted as t, ie the record passes."
(when ebdb-char-fold-search
(dolist (c clauses)
(when (and (consp c)
- (stringp (cadr c))))
- (setf (cadr c) (char-fold-to-regexp (cadr c)))))
+ (stringp (cadr c)))
+ (setf (cadr c) (char-fold-to-regexp (cadr c))))))
(seq-filter
(lambda (r)
(eql (null invert)