]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fstring_match): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Sun, 24 Nov 2002 19:04:57 +0000 (19:04 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 24 Nov 2002 19:04:57 +0000 (19:04 +0000)
src/search.c

index 11f4b01fc80f845ece4121a14cf625398b30fcf9..cae2783c117ffaa6f8640e0f5f4d1f290a60e982 100644 (file)
@@ -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;
 {