aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/replace.el
diff options
context:
space:
mode:
authorRichard M. Stallman1994-12-04 12:52:52 +0000
committerRichard M. Stallman1994-12-04 12:52:52 +0000
commit9b0bf2b6bdab97f2f9e01da7335e18c3945c5b5c (patch)
treed6cd5532b0969dfc9f9c599a31729082fdc79f0e /lisp/replace.el
parentbcddd52e8c01622559ba8fdddc8504f78a8a02d6 (diff)
downloademacs-9b0bf2b6bdab97f2f9e01da7335e18c3945c5b5c.tar.gz
emacs-9b0bf2b6bdab97f2f9e01da7335e18c3945c5b5c.zip
(replace-string, query-replace): Doc fixes.
Diffstat (limited to 'lisp/replace.el')
-rw-r--r--lisp/replace.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/replace.el b/lisp/replace.el
index 886748d1713..40b6c01bd04 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -57,6 +57,9 @@ minibuffer.
57 57
58Preserves case in each replacement if `case-replace' and `case-fold-search' 58Preserves case in each replacement if `case-replace' and `case-fold-search'
59are non-nil and FROM-STRING has no uppercase letters. 59are non-nil and FROM-STRING has no uppercase letters.
60\(Preserving case means that if the string matched is all caps, or capitalized,
61then its replacement is upcased or capitalized.)
62
60Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace 63Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
61only matches surrounded by word boundaries. 64only matches surrounded by word boundaries.
62 65
@@ -133,6 +136,9 @@ before rotating to the next."
133 "Replace occurrences of FROM-STRING with TO-STRING. 136 "Replace occurrences of FROM-STRING with TO-STRING.
134Preserve case in each match if `case-replace' and `case-fold-search' 137Preserve case in each match if `case-replace' and `case-fold-search'
135are non-nil and FROM-STRING has no uppercase letters. 138are non-nil and FROM-STRING has no uppercase letters.
139\(Preserving case means that if the string matched is all caps, or capitalized,
140then its replacement is upcased or capitalized.)
141
136Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace 142Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
137only matches surrounded by word boundaries. 143only matches surrounded by word boundaries.
138 144