Mercurial > emacs
changeset 53637:46f44b9f4e04
(wait_reading_process_input): Lisp_Object/int mixup.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 20 Jan 2004 21:19:17 +0000 |
parents | 83645a5b04ce |
children | 3e27ecb46d52 |
files | src/process.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/process.c Tue Jan 20 21:18:31 2004 +0000 +++ b/src/process.c Tue Jan 20 21:19:17 2004 +0000 @@ -1,6 +1,6 @@ /* Asynchronous subprocess control for GNU Emacs. Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 96, 98, 1999, - 2001, 2002, 2003 Free Software Foundation, Inc. + 2001, 2002, 2003, 2004 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -4296,7 +4296,7 @@ proc = chan_process[channel]; if (NILP (proc)) continue; - if (XPROCESS (proc)->read_output_delay > 0) + if (XINT (XPROCESS (proc)->read_output_delay) > 0) { check_delay--; if (NILP (XPROCESS (proc)->read_output_skip))