aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2022-06-01 22:30:59 +0300
committerEli Zaretskii2022-06-01 22:30:59 +0300
commitbfa647972f39e709c7a51981be3761224f0c1d48 (patch)
treefb4592951557d32f1d282ff1a2070d6fb6011bb7
parenta95d46e00febf3ef4a7fd016e06d5c426e81f1e2 (diff)
downloademacs-bfa647972f39e709c7a51981be3761224f0c1d48.tar.gz
emacs-bfa647972f39e709c7a51981be3761224f0c1d48.zip
; 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."
108 "Repeat replacing text of highlighted region with typed text. 108 "Repeat replacing text of highlighted region with typed text.
109Search for the next stretch of text identical to the region last replaced 109Search for the next stretch of text identical to the region last replaced
110by typing text over it and replaces it with the same stretch of text. 110by typing text over it and replaces it with the same stretch of text.
111With ARG, repeat that many times. `\\[universal-argument]' means until end of buffer." 111With ARG (interactively, prefix numeric argument), repeat that many times.
112Just `\\[universal-argument]' means repeat until the end of the buffer's accessible portion."
112 (interactive "P") 113 (interactive "P")
113 (let ((old-text (and delete-selection-save-to-register 114 (let ((old-text (and delete-selection-save-to-register
114 (get-register delete-selection-save-to-register))) 115 (get-register delete-selection-save-to-register)))