diff options
| author | Richard M. Stallman | 2002-11-24 19:04:57 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-11-24 19:04:57 +0000 |
| commit | 2bd2f32d10011df35b58c487e2ac8f7f755455fd (patch) | |
| tree | e6ef0603fe9034cb403e33293c7b57b4e3087e85 /src | |
| parent | 09c886dc0946d076c27bba804f3cae01eb5b2971 (diff) | |
| download | emacs-2bd2f32d10011df35b58c487e2ac8f7f755455fd.tar.gz emacs-2bd2f32d10011df35b58c487e2ac8f7f755455fd.zip | |
(Fstring_match): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/search.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/search.c b/src/search.c index 11f4b01fc80..cae2783c117 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. | |||
| 419 | If third arg START is non-nil, start search at that index in STRING. | 419 | If third arg START is non-nil, start search at that index in STRING. |
| 420 | For index of first char beyond the match, do (match-end 0). | 420 | For index of first char beyond the match, do (match-end 0). |
| 421 | `match-end' and `match-beginning' also give indices of substrings | 421 | `match-end' and `match-beginning' also give indices of substrings |
| 422 | matched by parenthesis constructs in the pattern. */) | 422 | matched by parenthesis constructs in the pattern. |
| 423 | |||
| 424 | You can use the function `match-string' to extract the substrings | ||
| 425 | matched by the parenthesis constructions in REGEXP. */) | ||
| 423 | (regexp, string, start) | 426 | (regexp, string, start) |
| 424 | Lisp_Object regexp, string, start; | 427 | Lisp_Object regexp, string, start; |
| 425 | { | 428 | { |