diff options
| author | Juanma Barranquero | 2007-01-07 18:45:28 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-01-07 18:45:28 +0000 |
| commit | 107173cf00a507edfe0738b54a857f20eb83d717 (patch) | |
| tree | 8074130276054a7e76a252e5877887d8eed75c30 /lisp/replace.el | |
| parent | e6a9e5841f6dea9eb0f5567f851ee6cad0dcea4a (diff) | |
| download | emacs-107173cf00a507edfe0738b54a857f20eb83d717.tar.gz emacs-107173cf00a507edfe0738b54a857f20eb83d717.zip | |
(replace-regexp): Fix typo in docstring.
Diffstat (limited to 'lisp/replace.el')
| -rw-r--r-- | lisp/replace.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index 610fd9d2e9f..c51985c3e4a 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -467,10 +467,9 @@ at the given position for each replacement. | |||
| 467 | In interactive calls, the replacement text may contain `\\,' | 467 | In interactive calls, the replacement text may contain `\\,' |
| 468 | followed by a Lisp expression used as part of the replacement | 468 | followed by a Lisp expression used as part of the replacement |
| 469 | text. Inside of that expression, `\\&' is a string denoting the | 469 | text. Inside of that expression, `\\&' is a string denoting the |
| 470 | whole match, `\\N' a partial matches, `\\#&' and `\\#N' the | 470 | whole match, `\\N' a partial match, `\\#&' and `\\#N' the respective |
| 471 | respective numeric values from `string-to-number', and `\\#' | 471 | numeric values from `string-to-number', and `\\#' itself for |
| 472 | itself for `replace-count', the number of replacements occured so | 472 | `replace-count', the number of replacements occurred so far. |
| 473 | far. | ||
| 474 | 473 | ||
| 475 | If your Lisp expression is an identifier and the next letter in | 474 | If your Lisp expression is an identifier and the next letter in |
| 476 | the replacement string would be interpreted as part of it, you | 475 | the replacement string would be interpreted as part of it, you |