diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-04-07 20:08:55 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-04-07 20:08:55 +0000 |
commit | 3cfb907a52cbddd2aaadf9ab8951d9bd35bcbb32 (patch) | |
tree | aa661ab8f9b9fa8d39567448f7ab04e4f37f94f5 /src/search.c | |
parent | 0c854645cb8736a12d56b6f100834f07c66286bb (diff) | |
download | emacs-3cfb907a52cbddd2aaadf9ab8951d9bd35bcbb32.tar.gz |
(search_buffer): Fix typo in previous change.
Diffstat (limited to 'src/search.c')
-rw-r--r-- | src/search.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/search.c b/src/search.c index fdf19fe656e..86a8977c5ab 100644 --- a/src/search.c +++ b/src/search.c @@ -670,11 +670,12 @@ search_buffer (string, pos, lim, n, RE, trt, inverse_trt) } while (n < 0) { + int val; BLOCK_INPUT; - int val = re_search_2 (&searchbuf, (char *) p1, s1, (char *) p2, s2, - pos - BEGV, lim - pos, &search_regs, - /* Don't allow match past current point */ - pos - BEGV); + val = re_search_2 (&searchbuf, (char *) p1, s1, (char *) p2, s2, + pos - BEGV, lim - pos, &search_regs, + /* Don't allow match past current point */ + pos - BEGV); UNBLOCK_INPUT; if (val == -2) matcher_overflow (); @@ -700,10 +701,11 @@ search_buffer (string, pos, lim, n, RE, trt, inverse_trt) } while (n > 0) { + int val; BLOCK_INPUT; - int val = re_search_2 (&searchbuf, (char *) p1, s1, (char *) p2, s2, - pos - BEGV, lim - pos, &search_regs, - lim - BEGV); + val = re_search_2 (&searchbuf, (char *) p1, s1, (char *) p2, s2, + pos - BEGV, lim - pos, &search_regs, + lim - BEGV); UNBLOCK_INPUT; if (val == -2) matcher_overflow (); |