aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2007-01-07 18:45:28 +0000
committerJuanma Barranquero2007-01-07 18:45:28 +0000
commit107173cf00a507edfe0738b54a857f20eb83d717 (patch)
tree8074130276054a7e76a252e5877887d8eed75c30
parente6a9e5841f6dea9eb0f5567f851ee6cad0dcea4a (diff)
downloademacs-107173cf00a507edfe0738b54a857f20eb83d717.tar.gz
emacs-107173cf00a507edfe0738b54a857f20eb83d717.zip
(replace-regexp): Fix typo in docstring.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/replace.el7
2 files changed, 9 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 97d390e2d3e..7ada1dde7c0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,7 +1,11 @@
12007-01-07 Chris Moore <christopher.ian.moore@gmail.com> (tiny change)
2
3 * replace.el (replace-regexp): Fix typo in docstring.
4
12007-01-07 Alan Mackenzie <acm@muc.de> 52007-01-07 Alan Mackenzie <acm@muc.de>
2 6
3 * progmodes/cc-langs.el (c-operators, c-filter-ops): Amend 7 * progmodes/cc-langs.el (c-operators, c-filter-ops):
4 doc-string and comments. 8 Amend doc-string and comments.
5 9
62007-01-06 Eli Zaretskii <eliz@gnu.org> 102007-01-06 Eli Zaretskii <eliz@gnu.org>
7 11
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.
467In interactive calls, the replacement text may contain `\\,' 467In interactive calls, the replacement text may contain `\\,'
468followed by a Lisp expression used as part of the replacement 468followed by a Lisp expression used as part of the replacement
469text. Inside of that expression, `\\&' is a string denoting the 469text. Inside of that expression, `\\&' is a string denoting the
470whole match, `\\N' a partial matches, `\\#&' and `\\#N' the 470whole match, `\\N' a partial match, `\\#&' and `\\#N' the respective
471respective numeric values from `string-to-number', and `\\#' 471numeric values from `string-to-number', and `\\#' itself for
472itself for `replace-count', the number of replacements occured so 472`replace-count', the number of replacements occurred so far.
473far.
474 473
475If your Lisp expression is an identifier and the next letter in 474If your Lisp expression is an identifier and the next letter in
476the replacement string would be interpreted as part of it, you 475the replacement string would be interpreted as part of it, you