]> git.eshelyaron.com Git - emacs.git/commitdiff
Use new convenience functions in replace-string
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 9 Aug 2022 19:12:54 +0000 (21:12 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 9 Aug 2022 19:13:10 +0000 (21:13 +0200)
* lisp/replace.el (replace-string): Use new convenience functions.

lisp/replace.el

index ae5c804be57c02ced47d8c6e6f0352263c393daf..2bb9c1b90dc9a6ebd8de1b5ead10a44c54663feb 100644 (file)
@@ -666,8 +666,8 @@ and TO-STRING is also null.)"
   (declare (interactive-only
            "use `search-forward' and `replace-match' instead.")
            (interactive-args
-           (start (if (use-region-p) (region-beginning)))
-           (end (if (use-region-p) (region-end)))))
+           (start (use-region-beginning))
+           (end (use-region-end))))
   (interactive
    (let ((common
          (query-replace-read-args
@@ -679,8 +679,7 @@ and TO-STRING is also null.)"
                   (if (use-region-p) " in region" ""))
           nil)))
      (list (nth 0 common) (nth 1 common) (nth 2 common)
-          (if (use-region-p) (region-beginning))
-          (if (use-region-p) (region-end))
+          (use-region-beginning) (use-region-end)
           (nth 3 common)
           (if (use-region-p) (region-noncontiguous-p)))))
   (perform-replace from-string to-string nil nil delimited nil nil start end backward region-noncontiguous-p))