# HG changeset patch # User Karl Heuer # Date 920538937 0 # Node ID 118e66d79d64ccd5e571154b74c60095c453248d # Parent a1cd251f7a7058469777785e579f7298fe2e8031 (Fstring_match, Fposix_string_match): Doc fix. diff -r a1cd251f7a70 -r 118e66d79d64 src/search.c --- a/src/search.c Thu Mar 04 09:03:31 1999 +0000 +++ b/src/search.c Thu Mar 04 09:15:37 1999 +0000 @@ -415,6 +415,7 @@ DEFUN ("string-match", Fstring_match, Sstring_match, 2, 3, 0, "Return index of start of first match for REGEXP in STRING, or nil.\n\ +Case is ignored if `case-fold-search' is non-nil in the current buffer.\n\ If third arg START is non-nil, start search at that index in STRING.\n\ For index of first char beyond the match, do (match-end 0).\n\ `match-end' and `match-beginning' also give indices of substrings\n\ @@ -428,6 +429,7 @@ DEFUN ("posix-string-match", Fposix_string_match, Sposix_string_match, 2, 3, 0, "Return index of start of first match for REGEXP in STRING, or nil.\n\ Find the longest match, in accord with Posix regular expression rules.\n\ +Case is ignored if `case-fold-search' is non-nil in the current buffer.\n\ If third arg START is non-nil, start search at that index in STRING.\n\ For index of first char beyond the match, do (match-end 0).\n\ `match-end' and `match-beginning' also give indices of substrings\n\