aboutsummaryrefslogtreecommitdiffstats
path: root/src/search.c
diff options
context:
space:
mode:
authorPaul Eggert2012-02-10 10:58:48 -0800
committerPaul Eggert2012-02-10 10:58:48 -0800
commit6e6c82a4e687708d5a7a3887f92db45bd74da276 (patch)
tree85dc3105240e84a8cddadb25d572e170fcdbd8bc /src/search.c
parent78df1fb1d46d556bfc2698ca1802972b13613ba8 (diff)
parentcc26d239af9a82cff079556a1daff4b4bf60eb5c (diff)
downloademacs-6e6c82a4e687708d5a7a3887f92db45bd74da276.tar.gz
emacs-6e6c82a4e687708d5a7a3887f92db45bd74da276.zip
Merge from trunk.
Diffstat (limited to 'src/search.c')
-rw-r--r--src/search.c8
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.
2192The match found must not extend before that position. 2192The match found must not extend before that position.
2193Optional third argument, if t, means if fail just return nil (no error). 2193Optional 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.
2195Optional fourth argument is repeat count--search for successive occurrences. 2195Optional 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
2197Search case-sensitivity is determined by the value of the variable 2199Search 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).
2212Optional third argument, if t, means if fail just return nil (no error). 2214Optional 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.
2214Optional fourth argument is repeat count--search for successive occurrences. 2216Optional 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
2216Search case-sensitivity is determined by the value of the variable 2220Search case-sensitivity is determined by the value of the variable
2217`case-fold-search', which see. 2221`case-fold-search', which see.