# HG changeset patch # User Jason Rumney # Date 1084827958 0 # Node ID ed93b07d7123c00214843373f8b8f29de749a8db # Parent d69e0fb913402a5adcc5a02f766e4f42f94d4045 (_sys_read_ahead): Use w32_pipe_read_delay. diff -r d69e0fb91340 -r ed93b07d7123 src/w32.c --- a/src/w32.c Mon May 17 21:05:06 2004 +0000 +++ b/src/w32.c Mon May 17 21:05:58 2004 +0000 @@ -3486,7 +3486,7 @@ } /* From ntproc.c */ -extern Lisp_Object Vw32_pipe_read_delay; +extern int w32_pipe_read_delay; /* Function to do blocking read of one byte, needed to implement select. It is only allowed on sockets and pipes. */ @@ -3526,7 +3526,7 @@ shell on NT is very slow if we don't do this. */ if (rc > 0) { - int wait = XINT (Vw32_pipe_read_delay); + int wait = w32_pipe_read_delay; if (wait > 0) Sleep (wait);