diff options
| author | Eli Zaretskii | 2017-05-19 11:12:51 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2017-05-19 11:12:51 +0300 |
| commit | bb5c6614eb171eef8c08474e0f949fe18ef4b230 (patch) | |
| tree | f59b29f1c4ab343f6730320dc5dc1ab6f2a09d30 | |
| parent | 7c951fd51832badb09055a8e177f8ec358cbbdcf (diff) | |
| download | emacs-bb5c6614eb171eef8c08474e0f949fe18ef4b230.tar.gz emacs-bb5c6614eb171eef8c08474e0f949fe18ef4b230.zip | |
* lisp/replace.el (query-replace-regexp-eval): Doc fix.
| -rw-r--r-- | lisp/replace.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index 477cc9c3055..64dfe7da22d 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -464,8 +464,8 @@ reference `replace-count' to get the number of replacements already made. | |||
| 464 | If the result of TO-EXPR is not a string, it is converted to one using | 464 | If the result of TO-EXPR is not a string, it is converted to one using |
| 465 | `prin1-to-string' with the NOESCAPE argument (which see). | 465 | `prin1-to-string' with the NOESCAPE argument (which see). |
| 466 | 466 | ||
| 467 | For convenience, when entering TO-EXPR interactively, you can use `\\&' or | 467 | For convenience, when entering TO-EXPR interactively, you can use `\\&' |
| 468 | `\\0' to stand for whatever matched the whole of REGEXP, and `\\N' (where | 468 | to stand for whatever matched the whole of REGEXP, and `\\N' (where |
| 469 | N is a digit) to stand for whatever matched the Nth `\\(...\\)' (1-based) | 469 | N is a digit) to stand for whatever matched the Nth `\\(...\\)' (1-based) |
| 470 | in REGEXP. | 470 | in REGEXP. |
| 471 | 471 | ||