summaryrefslogtreecommitdiff
path: root/lisp/replace.el
diff options
context:
space:
mode:
authorTino Calancha <tino.calancha@gmail.com>2018-04-09 11:47:47 +0900
committerTino Calancha <tino.calancha@gmail.com>2018-04-09 11:47:47 +0900
commit32dc0cb1b5ae895d237c7118ccaeb084715934fd (patch)
treefb8f4645d3584fdf5281bc78e662d5c893e56bea /lisp/replace.el
parent24f7defaf79e5afc38f40de01c78a4a7ed51dbd4 (diff)
downloademacs-32dc0cb1b5ae895d237c7118ccaeb084715934fd.tar.gz
Preserve case in query-replace undo
If the user query and replaces 'foo' with 'BAR', then undo must comeback to 'foo', not to 'FOO' (Bug#31073). * lisp/replace.el (perform-replace): Bind nocasify to non-nil value during undo/undo-all actions. * test/lisp/replace-tests.el (query-replace-undo-bug31073): Add test.
Diffstat (limited to 'lisp/replace.el')
-rw-r--r--lisp/replace.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/replace.el b/lisp/replace.el
index c28c9b36f05..4916cb138e6 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -2619,6 +2619,7 @@ It must return a string."
(let ((stack-idx 0)
(stack-len (length stack))
(num-replacements 0)
+ (nocasify t) ; Undo must preserve case (Bug#31073).
search-string
next-replacement)
(while (and (< stack-idx stack-len)