diff src/process.c @ 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 2a54a8df1973
children 291acfb4bf40
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))