]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix query-replace at EOB
authorEli Zaretskii <eliz@gnu.org>
Wed, 15 Nov 2023 13:15:35 +0000 (15:15 +0200)
committerEli Zaretskii <eliz@gnu.org>
Wed, 15 Nov 2023 13:15:35 +0000 (15:15 +0200)
* lisp/replace.el (replace-match-maybe-edit): Avoid clobbering
match-data with outdated buffer position.  (Bug#67124)

lisp/replace.el

index 6b06e48c38432a7852ae1dd34b3b11d758364226..7fec54ecb27c4b76082d037ddcd8d302d9fec81c 100644 (file)
@@ -2644,8 +2644,11 @@ passed in.  If LITERAL is set, no checking is done, anyway."
   (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)
+  ;; Ensure that this function preserves the beginning of the match position
+  ;; (bug#31492).  But we need to avoid clobbering the end of the match with
+  ;; the original match-end position, since `replace-match' could have made
+  ;; that incorrect or even invalid (bug#67124).
+  (set-match-data (list (car match-data) (nth 1 (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)))