diff options
| author | Eli Zaretskii | 2000-10-11 17:54:18 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2000-10-11 17:54:18 +0000 |
| commit | d594a73b961f69f12500d5cbc83e48ae07a2b401 (patch) | |
| tree | 11e6a3c49d1efb67297d7737c45770e773e2d67a /src | |
| parent | 9d9c2e394ea495fd5bcb95a137cf6ebe1dced8a1 (diff) | |
| download | emacs-d594a73b961f69f12500d5cbc83e48ae07a2b401.tar.gz emacs-d594a73b961f69f12500d5cbc83e48ae07a2b401.zip | |
(Fsearch_backward, Fsearch_forward): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/search.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/search.c b/src/search.c index 48528bea121..ceeaef810e6 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -2030,6 +2030,10 @@ The match found must not extend before that position.\n\ | |||
| 2030 | Optional third argument, if t, means if fail just return nil (no error).\n\ | 2030 | Optional third argument, if t, means if fail just return nil (no error).\n\ |
| 2031 | If not nil and not t, position at limit of search and return nil.\n\ | 2031 | If not nil and not t, position at limit of search and return nil.\n\ |
| 2032 | Optional fourth argument is repeat count--search for successive occurrences.\n\ | 2032 | Optional fourth argument is repeat count--search for successive occurrences.\n\ |
| 2033 | \n\ | ||
| 2034 | Search case-sensitivity is determined by the value of the variable\n\ | ||
| 2035 | `case-fold-search', which see.\n\ | ||
| 2036 | \n\ | ||
| 2033 | See also the functions `match-beginning', `match-end' and `replace-match'.") | 2037 | See also the functions `match-beginning', `match-end' and `replace-match'.") |
| 2034 | (string, bound, noerror, count) | 2038 | (string, bound, noerror, count) |
| 2035 | Lisp_Object string, bound, noerror, count; | 2039 | Lisp_Object string, bound, noerror, count; |
| @@ -2046,6 +2050,10 @@ The match found must not extend after that position. nil is equivalent\n\ | |||
| 2046 | Optional third argument, if t, means if fail just return nil (no error).\n\ | 2050 | Optional third argument, if t, means if fail just return nil (no error).\n\ |
| 2047 | If not nil and not t, move to limit of search and return nil.\n\ | 2051 | If not nil and not t, move to limit of search and return nil.\n\ |
| 2048 | Optional fourth argument is repeat count--search for successive occurrences.\n\ | 2052 | Optional fourth argument is repeat count--search for successive occurrences.\n\ |
| 2053 | \n\ | ||
| 2054 | Search case-sensitivity is determined by the value of the variable\n\ | ||
| 2055 | `case-fold-search', which see.\n\ | ||
| 2056 | \n\ | ||
| 2049 | See also the functions `match-beginning', `match-end' and `replace-match'.") | 2057 | See also the functions `match-beginning', `match-end' and `replace-match'.") |
| 2050 | (string, bound, noerror, count) | 2058 | (string, bound, noerror, count) |
| 2051 | Lisp_Object string, bound, noerror, count; | 2059 | Lisp_Object string, bound, noerror, count; |