diff options
| author | Paul Eggert | 2012-02-10 10:58:48 -0800 |
|---|---|---|
| committer | Paul Eggert | 2012-02-10 10:58:48 -0800 |
| commit | 6e6c82a4e687708d5a7a3887f92db45bd74da276 (patch) | |
| tree | 85dc3105240e84a8cddadb25d572e170fcdbd8bc /src/search.c | |
| parent | 78df1fb1d46d556bfc2698ca1802972b13613ba8 (diff) | |
| parent | cc26d239af9a82cff079556a1daff4b4bf60eb5c (diff) | |
| download | emacs-6e6c82a4e687708d5a7a3887f92db45bd74da276.tar.gz emacs-6e6c82a4e687708d5a7a3887f92db45bd74da276.zip | |
Merge from trunk.
Diffstat (limited to 'src/search.c')
| -rw-r--r-- | src/search.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/search.c b/src/search.c index 0d451bd11c3..f33965d4d70 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -2192,7 +2192,9 @@ An optional second argument bounds the search; it is a buffer position. | |||
| 2192 | The match found must not extend before that position. | 2192 | The match found must not extend before that position. |
| 2193 | Optional third argument, if t, means if fail just return nil (no error). | 2193 | Optional third argument, if t, means if fail just return nil (no error). |
| 2194 | If not nil and not t, position at limit of search and return nil. | 2194 | If not nil and not t, position at limit of search and return nil. |
| 2195 | Optional fourth argument is repeat count--search for successive occurrences. | 2195 | Optional fourth argument COUNT, if non-nil, means to search for COUNT |
| 2196 | successive occurrences. If COUNT is negative, search forward, | ||
| 2197 | instead of backward, for -COUNT occurrences. | ||
| 2196 | 2198 | ||
| 2197 | Search case-sensitivity is determined by the value of the variable | 2199 | Search case-sensitivity is determined by the value of the variable |
| 2198 | `case-fold-search', which see. | 2200 | `case-fold-search', which see. |
| @@ -2211,7 +2213,9 @@ The match found must not extend after that position. A value of nil is | |||
| 2211 | equivalent to (point-max). | 2213 | equivalent to (point-max). |
| 2212 | Optional third argument, if t, means if fail just return nil (no error). | 2214 | Optional third argument, if t, means if fail just return nil (no error). |
| 2213 | If not nil and not t, move to limit of search and return nil. | 2215 | If not nil and not t, move to limit of search and return nil. |
| 2214 | Optional fourth argument is repeat count--search for successive occurrences. | 2216 | Optional fourth argument COUNT, if non-nil, means to search for COUNT |
| 2217 | successive occurrences. If COUNT is negative, search backward, | ||
| 2218 | instead of forward, for -COUNT occurrences. | ||
| 2215 | 2219 | ||
| 2216 | Search case-sensitivity is determined by the value of the variable | 2220 | Search case-sensitivity is determined by the value of the variable |
| 2217 | `case-fold-search', which see. | 2221 | `case-fold-search', which see. |