diff options
| author | Eli Zaretskii | 2023-05-10 16:01:28 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2023-05-10 16:01:28 +0300 |
| commit | 2438fa2e6cc6b747206b10da2b0fd2b431df70eb (patch) | |
| tree | 7756fa2e71d9dbdbd0765c181313cd81356d2843 | |
| parent | 93005cd9dc2bab882e66ac7b81f593cd6c021e43 (diff) | |
| download | emacs-2438fa2e6cc6b747206b10da2b0fd2b431df70eb.tar.gz emacs-2438fa2e6cc6b747206b10da2b0fd2b431df70eb.zip | |
; Fix minor documentation issue ion replace.el
* lisp/replace.el (query-replace, query-replace-regexp): Doc fix.
(Bug#63397)
| -rw-r--r-- | lisp/replace.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index 3c2b925ea92..1555731f6e3 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -436,6 +436,8 @@ Fourth and fifth arg START and END specify the region to operate on. | |||
| 436 | 436 | ||
| 437 | Arguments FROM-STRING, TO-STRING, DELIMITED, START, END, BACKWARD, and | 437 | Arguments FROM-STRING, TO-STRING, DELIMITED, START, END, BACKWARD, and |
| 438 | REGION-NONCONTIGUOUS-P are passed to `perform-replace' (which see). | 438 | REGION-NONCONTIGUOUS-P are passed to `perform-replace' (which see). |
| 439 | \(TO-STRING is passed to `perform-replace' as REPLACEMENTS and | ||
| 440 | DELIMITED is passed as DELIMITED-FLAG.) | ||
| 439 | 441 | ||
| 440 | To customize possible responses, change the bindings in `query-replace-map'." | 442 | To customize possible responses, change the bindings in `query-replace-map'." |
| 441 | (declare (interactive-args | 443 | (declare (interactive-args |
| @@ -533,7 +535,10 @@ text, TO-STRING is actually made a list instead of a string. | |||
| 533 | Use \\[repeat-complex-command] after this command for details. | 535 | Use \\[repeat-complex-command] after this command for details. |
| 534 | 536 | ||
| 535 | Arguments REGEXP, TO-STRING, DELIMITED, START, END, BACKWARD, and | 537 | Arguments REGEXP, TO-STRING, DELIMITED, START, END, BACKWARD, and |
| 536 | REGION-NONCONTIGUOUS-P are passed to `perform-replace' (which see)." | 538 | REGION-NONCONTIGUOUS-P are passed to `perform-replace' (which see). |
| 539 | \(REGEXP is passed to `perform-replace' as FROM-STRING, | ||
| 540 | TO-STRING is passed as REPLACEMENTS, and DELIMITED is passed | ||
| 541 | as DELIMITED-FLAG.)" | ||
| 537 | (declare (interactive-args | 542 | (declare (interactive-args |
| 538 | (start (use-region-beginning)) | 543 | (start (use-region-beginning)) |
| 539 | (end (use-region-end)) | 544 | (end (use-region-end)) |