branch: elpa/anzu
commit f73bab274477c7c80033e52f124231a6be54cb67
Merge: 138ebcb0e0 5c59c252d5
Author: Syohei YOSHIDA <[email protected]>
Commit: Syohei YOSHIDA <[email protected]>
Merge pull request #16 from syohex/fix-case-sensitive
Fix ignore case problem
---
anzu.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/anzu.el b/anzu.el
index 2af874b7f8..1a9f221af7 100644
--- a/anzu.el
+++ b/anzu.el
@@ -386,8 +386,8 @@
(when (re-search-forward from-regexp nil t)
(if (consp compiled)
(replace-match (funcall (car compiled) (cdr compiled)
- replace-count))
- (replace-match compiled))
+ replace-count) t)
+ (replace-match compiled t))
(buffer-substring (point-min) (point-max))))))
(defun anzu--overlay-sort (a b)