summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2022-06-01 22:30:59 +0300
committerEli Zaretskii <eliz@gnu.org>2022-06-01 22:30:59 +0300
commitbfa647972f39e709c7a51981be3761224f0c1d48 (patch)
treefb4592951557d32f1d282ff1a2070d6fb6011bb7
parenta95d46e00febf3ef4a7fd016e06d5c426e81f1e2 (diff)
downloademacs-bfa647972f39e709c7a51981be3761224f0c1d48.tar.gz
; Fix doc string of 'delete-selection-repeat-replace-region'
* lisp/delsel.el (delete-selection-repeat-replace-region): Doc fix. (Bug#55755)
-rw-r--r--lisp/delsel.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/delsel.el b/lisp/delsel.el
index f5fe7cf7939..554b1e7249a 100644
--- a/lisp/delsel.el
+++ b/lisp/delsel.el
@@ -108,7 +108,8 @@ the active region is killed instead of deleted."
"Repeat replacing text of highlighted region with typed text.
Search for the next stretch of text identical to the region last replaced
by typing text over it and replaces it with the same stretch of text.
-With ARG, repeat that many times. `\\[universal-argument]' means until end of buffer."
+With ARG (interactively, prefix numeric argument), repeat that many times.
+Just `\\[universal-argument]' means repeat until the end of the buffer's accessible portion."
(interactive "P")
(let ((old-text (and delete-selection-save-to-register
(get-register delete-selection-save-to-register)))