1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 11:50:28 +02:00

* readline.c (match_paren): Use SELECT_TYPE, not fd_set, for type

of readset.
This commit is contained in:
Greg J. Badros 2000-03-08 18:43:47 +00:00
parent f635d2d4d6
commit aba2031abc

View file

@ -468,7 +468,7 @@ static int
match_paren (int x, int k) match_paren (int x, int k)
{ {
int tmp; int tmp;
fd_set readset; SELECT_TYPE readset;
struct timeval timeout; struct timeval timeout;
rl_insert (x, k); rl_insert (x, k);