]> git.eshelyaron.com Git - emacs.git/commitdiff
Backport: Fix corner case in query-replace-regexp undo
authorTino Calancha <tino.calancha@gmail.com>
Sun, 3 Jun 2018 14:28:24 +0000 (23:28 +0900)
committerTino Calancha <tino.calancha@gmail.com>
Sun, 3 Jun 2018 14:28:24 +0000 (23:28 +0900)
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.

(cherry picked from commit bab73230d1be1fe394b7269c1365ef6fb1a5d9b3)

lisp/replace.el
test/lisp/replace-tests.el

index d1eabb035d3859d28d3b11881a1b3d15edad9f93..88da7e26cb0c5260ec155c9e0877ca23a0cc1b24 100644 (file)
@@ -2147,6 +2147,10 @@ passed in.  If LITERAL is set, no checking is done, anyway."
            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)))
index 40a1a31cf7c2670279da84271f93b8b42e1eaa8e..40ee838e679b41c742817465dc57845ebd35cd14 100644 (file)
@@ -399,5 +399,25 @@ Each element has the format:
       ;; 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