diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-03-10 22:55:04 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-03-10 22:55:04 +0000 |
commit | 0f2cb0d0d4502afe093a827f66c484e39c4feef5 (patch) | |
tree | e7c931b99246eadc8ad74838327f0f88e18c5c68 /src/search.c | |
parent | 19a1c3ead358482b4759c9cfa52b5b157b9b69fe (diff) | |
download | emacs-0f2cb0d0d4502afe093a827f66c484e39c4feef5.tar.gz |
(Fre_search_forward, Fre_search_backward): Doc fix.
Diffstat (limited to 'src/search.c')
-rw-r--r-- | src/search.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/search.c b/src/search.c index 1e4b72bd9c0..e24a2019086 100644 --- a/src/search.c +++ b/src/search.c @@ -1118,17 +1118,17 @@ DEFUN ("re-search-backward", Fre_search_backward, Sre_search_backward, 1, 4, "Search backward from point for match for regular expression REGEXP.\n\ Set point to the beginning of the match, and return point.\n\ The match found is the one starting last in the buffer\n\ -and yet ending before the place the origin of the search.\n\ +and yet ending before the origin of the search.\n\ An optional second argument bounds the search; it is a buffer position.\n\ The match found must start at or after that position.\n\ Optional third argument, if t, means if fail just return nil (no error).\n\ If not nil and not t, move to limit of search and return nil.\n\ Optional fourth argument is repeat count--search for successive occurrences.\n\ See also the functions `match-beginning', `match-end' and `replace-match'.") - (string, bound, noerror, count) - Lisp_Object string, bound, noerror, count; + (regexp, bound, noerror, count) + Lisp_Object regexp, bound, noerror, count; { - return search_command (string, bound, noerror, count, -1, 1); + return search_command (regexp, bound, noerror, count, -1, 1); } DEFUN ("re-search-forward", Fre_search_forward, Sre_search_forward, 1, 4, @@ -1141,10 +1141,10 @@ Optional third argument, if t, means if fail just return nil (no error).\n\ If not nil and not t, move to limit of search and return nil.\n\ Optional fourth argument is repeat count--search for successive occurrences.\n\ See also the functions `match-beginning', `match-end' and `replace-match'.") - (string, bound, noerror, count) - Lisp_Object string, bound, noerror, count; + (regexp, bound, noerror, count) + Lisp_Object regexp, bound, noerror, count; { - return search_command (string, bound, noerror, count, 1, 1); + return search_command (regexp, bound, noerror, count, 1, 1); } DEFUN ("replace-match", Freplace_match, Sreplace_match, 1, 3, 0, |