aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2002-11-24 19:04:57 +0000
committerRichard M. Stallman <[email protected]>2002-11-24 19:04:57 +0000
commit2bd2f32d10011df35b58c487e2ac8f7f755455fd (patch)
treee6ef0603fe9034cb403e33293c7b57b4e3087e85
parent09c886dc0946d076c27bba804f3cae01eb5b2971 (diff)
(Fstring_match): Doc fix.
-rw-r--r--src/search.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/search.c b/src/search.c
index 11f4b01fc8..cae2783c11 100644
--- a/src/search.c
+++ b/src/search.c
@@ -419,7 +419,10 @@ Case is ignored if `case-fold-search' is non-nil in the current buffer.
If third arg START is non-nil, start search at that index in STRING.
For index of first char beyond the match, do (match-end 0).
`match-end' and `match-beginning' also give indices of substrings
-matched by parenthesis constructs in the pattern. */)
+matched by parenthesis constructs in the pattern.
+
+You can use the function `match-string' to extract the substrings
+matched by the parenthesis constructions in REGEXP. */)
(regexp, string, start)
Lisp_Object regexp, string, start;
{