diff options
| author | Eli Zaretskii | 2022-06-01 22:30:59 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2022-06-01 22:30:59 +0300 |
| commit | bfa647972f39e709c7a51981be3761224f0c1d48 (patch) | |
| tree | fb4592951557d32f1d282ff1a2070d6fb6011bb7 | |
| parent | a95d46e00febf3ef4a7fd016e06d5c426e81f1e2 (diff) | |
| download | emacs-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.el | 3 |
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. |
| 109 | Search for the next stretch of text identical to the region last replaced | 109 | Search for the next stretch of text identical to the region last replaced |
| 110 | by typing text over it and replaces it with the same stretch of text. | 110 | by typing text over it and replaces it with the same stretch of text. |
| 111 | With ARG, repeat that many times. `\\[universal-argument]' means until end of buffer." | 111 | With ARG (interactively, prefix numeric argument), repeat that many times. |
| 112 | Just `\\[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))) |