aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2006-12-19 16:14:54 +0000
committerJuanma Barranquero2006-12-19 16:14:54 +0000
commit48740f0158791429e76a0117c65c270ec966108f (patch)
tree1140def93be2ad5d3ffd5b43418777e6d945d1c2
parente1d1b6574641620096c8294246bee2fa1868bf82 (diff)
downloademacs-48740f0158791429e76a0117c65c270ec966108f.tar.gz
emacs-48740f0158791429e76a0117c65c270ec966108f.zip
(Fsearch_forward): Doc fix.
-rw-r--r--src/search.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/search.c b/src/search.c
index d6572c5397a..d44ade3b610 100644
--- a/src/search.c
+++ b/src/search.c
@@ -2165,8 +2165,8 @@ DEFUN ("search-forward", Fsearch_forward, Ssearch_forward, 1, 4, "MSearch: ",
2165 doc: /* Search forward from point for STRING. 2165 doc: /* Search forward from point for STRING.
2166Set point to the end of the occurrence found, and return point. 2166Set point to the end of the occurrence found, and return point.
2167An optional second argument bounds the search; it is a buffer position. 2167An optional second argument bounds the search; it is a buffer position.
2168The match found must not extend after that position. nil is equivalent 2168The match found must not extend after that position. If nil, it is
2169 to (point-max). 2169 equivalent to (point-max).
2170Optional third argument, if t, means if fail just return nil (no error). 2170Optional third argument, if t, means if fail just return nil (no error).
2171 If not nil and not t, move to limit of search and return nil. 2171 If not nil and not t, move to limit of search and return nil.
2172Optional fourth argument is repeat count--search for successive occurrences. 2172Optional fourth argument is repeat count--search for successive occurrences.