aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorTino Calancha2019-08-19 17:32:09 +0200
committerTino Calancha2019-08-19 17:32:09 +0200
commitbeb1d22260af2e03d80d34fcc1db212785a9d903 (patch)
tree04e6f0becdd395cba0f221bed564f2e5defe44fb /test
parent190565b2396d80178fc5f6757117540e3a1ae9e1 (diff)
downloademacs-beb1d22260af2e03d80d34fcc1db212785a9d903.tar.gz
emacs-beb1d22260af2e03d80d34fcc1db212785a9d903.zip
Fix query-replace-regexp undo feature
Ensure that non-regexp strings used with `looking-at' are quoted. * lisp/replace.el (perform-replace): Quote regexp (Bug#37073). * test/lisp/replace-tests.el (replace-tests-perform-replace-regexp-flag): New variable. (replace-tests-with-undo): Use it. (query-replace-undo-bug37073): Add tests.
Diffstat (limited to 'test')
-rw-r--r--test/lisp/replace-tests.el26
1 files changed, 25 insertions, 1 deletions
diff --git a/test/lisp/replace-tests.el b/test/lisp/replace-tests.el
index cd30633e377..cd08a522e39 100644
--- a/test/lisp/replace-tests.el
+++ b/test/lisp/replace-tests.el
@@ -365,6 +365,9 @@ Each element has the format:
365(defvar replace-tests-bind-read-string nil 365(defvar replace-tests-bind-read-string nil
366 "A string to bind `read-string' and avoid the prompt.") 366 "A string to bind `read-string' and avoid the prompt.")
367 367
368(defvar replace-tests-perform-replace-regexp-flag t
369 "Value for regexp-flag argument passed to `perform-replace' in undo tests.")
370
368(defmacro replace-tests-with-undo (input from to char-nums def-chr &rest body) 371(defmacro replace-tests-with-undo (input from to char-nums def-chr &rest body)
369 "Helper to test `query-replace' undo feature. 372 "Helper to test `query-replace' undo feature.
370INPUT is a string to insert in a temporary buffer. 373INPUT is a string to insert in a temporary buffer.
@@ -412,7 +415,7 @@ Return the last evalled form in BODY."
412 (if replace-tests-bind-read-string 415 (if replace-tests-bind-read-string
413 (lambda (&rest args) replace-tests-bind-read-string) 416 (lambda (&rest args) replace-tests-bind-read-string)
414 (symbol-function 'read-string)))) 417 (symbol-function 'read-string))))
415 (perform-replace ,from ,to t t nil)) 418 (perform-replace ,from ,to t replace-tests-perform-replace-regexp-flag nil))
416 ,@body)))) 419 ,@body))))
417 420
418(defun replace-tests--query-replace-undo (&optional comma) 421(defun replace-tests--query-replace-undo (&optional comma)
@@ -454,5 +457,26 @@ Return the last evalled form in BODY."
454 input "a" "B" ((?\s . (1 2 3)) (?E . (4)) (?U . (5))) ?q 457 input "a" "B" ((?\s . (1 2 3)) (?E . (4)) (?U . (5))) ?q
455 (string= input (buffer-string)))))) 458 (string= input (buffer-string))))))
456 459
460(ert-deftest query-replace-undo-bug37073 ()
461 "Test for https://debbugs.gnu.org/37073 ."
462 (let ((input "theorem 1\ntheorem 2\ntheorem 3"))
463 (should
464 (replace-tests-with-undo
465 input "theorem \\([0-9]+\\)"
466 "theorem \\\\ref{theo_\\1}"
467 ((?\s . (1 2)) (?U . (3)))
468 ?q
469 (string= input (buffer-string)))))
470 ;; Now run a test with regexp-flag arg in `perform-replace' set to nil
471 (let ((input " ^theorem$ 1\n ^theorem$ 2\n ^theorem$ 3")
472 (replace-tests-perform-replace-regexp-flag nil)
473 (expected " theo 1\n ^theorem$ 2\n ^theorem$ 3"))
474 (should
475 (replace-tests-with-undo
476 input "^theorem$"
477 "theo"
478 ((?\s . (1 2 4)) (?U . (3)))
479 ?q
480 (string= expected (buffer-string))))))
457 481
458;;; replace-tests.el ends here 482;;; replace-tests.el ends here