[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#31492: 26.1; query-replace-regexp undo fails in regexps w/o printabl
From: |
Tino Calancha |
Subject: |
bug#31492: 26.1; query-replace-regexp undo fails in regexps w/o printable chars |
Date: |
Mon, 21 May 2018 10:51:43 +0900 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) |
Eli Zaretskii <eliz@gnu.org> writes:
>> we can use the first patch; the one with the test:
>> (/= (match-beginning 0) (match-end 0))
>
> No, I like the 2nd one better.
Following patch is equivalent to the 2nd and its 1-liner
(excluded clarification comments):
--8<-----------------------------cut here---------------start------------->8---
commit 565c30caa8d5b015fd34446bd8900c55b2f67544
Author: Tino Calancha <tino.calancha@gmail.com>
Date: Mon May 21 10:46:50 2018 +0900
Fix corner case in query-replace-regexp undo
This commit fixes Bug#31492.
* lisp/replace.el (replace-match-maybe-edit): Preserve match data.
* test/lisp/replace-tests.el (query-replace-undo-bug31492): Add test.
diff --git a/lisp/replace.el b/lisp/replace.el
index 3503b656d9..a17dd19b0d 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -2214,6 +2214,10 @@ replace-match-maybe-edit
noedit nil)))
(set-match-data match-data)
(replace-match newtext fixedcase literal)
+ ;; `query-replace' undo feature needs the beginning of the match position,
+ ;; but `replace-match' may change it, for instance, with a regexp like "^".
+ ;; Ensure that this function preserves the match data (Bug#31492).
+ (set-match-data match-data)
;; `replace-match' leaves point at the end of the replacement text,
;; so move point to the beginning when replacing backward.
(when backward (goto-char (nth 0 match-data)))
diff --git a/test/lisp/replace-tests.el b/test/lisp/replace-tests.el
index 40a1a31cf7..40ee838e67 100644
--- a/test/lisp/replace-tests.el
+++ b/test/lisp/replace-tests.el
@@ -399,5 +399,25 @@ replace-tests--query-replace-undo
;; After undo text must be the same.
(should (string= text (buffer-string))))))
+(ert-deftest query-replace-undo-bug31492 ()
+ "Test for https://debbugs.gnu.org/31492 ."
+ (let ((text "a\nb\nc\n")
+ (count 0)
+ (inhibit-message t))
+ (with-temp-buffer
+ (insert text)
+ (goto-char 1)
+ (cl-letf (((symbol-function 'read-event)
+ (lambda (&rest args)
+ (cl-incf count)
+ (let ((val (pcase count
+ ((or 1 2) ?\s) ; replace current and go next
+ (3 ?U) ; undo-all
+ (_ ?q)))) ; exit
+ val))))
+ (perform-replace "^\\|\b\\|$" "foo" t t nil))
+ ;; After undo text must be the same.
+ (should (string= text (buffer-string))))))
+
;;; replace-tests.el ends here
--8<-----------------------------cut here---------------end--------------->8---
- bug#31492: 26.1; query-replace-regexp undo fails in regexps w/o printable chars, (continued)
- bug#31492: 26.1; query-replace-regexp undo fails in regexps w/o printable chars, Tino Calancha, 2018/05/18
- bug#31492: 26.1; query-replace-regexp undo fails in regexps w/o printable chars, Eli Zaretskii, 2018/05/19
- bug#31492: 26.1; query-replace-regexp undo fails in regexps w/o printable chars, Tino Calancha, 2018/05/19
- bug#31492: 26.1; query-replace-regexp undo fails in regexps w/o printable chars, Eli Zaretskii, 2018/05/20
- bug#31492: 26.1; query-replace-regexp undo fails in regexps w/o printable chars, Tino Calancha, 2018/05/20
- bug#31492: 26.1; query-replace-regexp undo fails in regexps w/o printable chars, Eli Zaretskii, 2018/05/20
- bug#31492: 26.1; query-replace-regexp undo fails in regexps w/o printable chars, Tino Calancha, 2018/05/20
- bug#31492: 26.1; query-replace-regexp undo fails in regexps w/o printable chars, Eli Zaretskii, 2018/05/20
- bug#31492: 26.1; query-replace-regexp undo fails in regexps w/o printable chars, Tino Calancha, 2018/05/20
- bug#31492: 26.1; query-replace-regexp undo fails in regexps w/o printable chars, Eli Zaretskii, 2018/05/20
- bug#31492: 26.1; query-replace-regexp undo fails in regexps w/o printable chars,
Tino Calancha <=
- bug#31492: 26.1; query-replace-regexp undo fails in regexps w/o printable chars, Eli Zaretskii, 2018/05/21
- bug#31492: 26.1; query-replace-regexp undo fails in regexps w/o printable chars, Tino Calancha, 2018/05/23