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

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

[nongnu] elpa/anzu 5c59c252d5 099/288: Fix ignore case problem


From: ELPA Syncer
Subject: [nongnu] elpa/anzu 5c59c252d5 099/288: Fix ignore case problem
Date: Thu, 6 Jan 2022 03:58:43 -0500 (EST)

branch: elpa/anzu
commit 5c59c252d57252e8e7725afb1b99ab3ee18f828f
Author: Syohei YOSHIDA <syohex@gmail.com>
Commit: Syohei YOSHIDA <syohex@gmail.com>

    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)



reply via email to

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