summaryrefslogtreecommitdiff
path: root/src/search.c
diff options
context:
space:
mode:
authorChong Yidong <cyd@gnu.org>2012-01-26 23:48:27 +0800
committerChong Yidong <cyd@gnu.org>2012-01-26 23:48:27 +0800
commitacc28cb93b4b332053381e2cdcdab3ab8c5b73f9 (patch)
tree7bea0b3a648d03e14223fdc91b4f7b7a22db5bad /src/search.c
parent8681f11d3b4c9e9d9b85cc997db7e091c19e6c13 (diff)
downloademacs-acc28cb93b4b332053381e2cdcdab3ab8c5b73f9.tar.gz
Document negative repeat counts for search-forward and search-backward.
* doc/lispref/searching.texi (String Search): Document negative repeat count. * src/search.c (Fsearch_forward, Fsearch_backward): Document negative repeat counts (Bug#10507).
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 67323b3c6e7..55a6d893479 100644
--- a/src/search.c
+++ b/src/search.c
@@ -2181,7 +2181,9 @@ An optional second argument bounds the search; it is a buffer position.
The match found must not extend before that position.
Optional third argument, if t, means if fail just return nil (no error).
If not nil and not t, position at limit of search and return nil.
-Optional fourth argument is repeat count--search for successive occurrences.
+Optional fourth argument COUNT, if non-nil, means to search for COUNT
+ successive occurrences. If COUNT is negative, search forward,
+ instead of backward, for -COUNT occurrences.
Search case-sensitivity is determined by the value of the variable
`case-fold-search', which see.
@@ -2200,7 +2202,9 @@ The match found must not extend after that position. A value of nil is
equivalent to (point-max).
Optional third argument, if t, means if fail just return nil (no error).
If not nil and not t, move to limit of search and return nil.
-Optional fourth argument is repeat count--search for successive occurrences.
+Optional fourth argument COUNT, if non-nil, means to search for COUNT
+ successive occurrences. If COUNT is negative, search backward,
+ instead of forward, for -COUNT occurrences.
Search case-sensitivity is determined by the value of the variable
`case-fold-search', which see.