aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorStefan Monnier2004-01-20 21:19:33 +0000
committerStefan Monnier2004-01-20 21:19:33 +0000
commit9076a823112d9decd0343cb2265eae8bb9c4c50f (patch)
tree8783dd180adae228c4a052d24eb63313a107f32b /src/process.c
parent45c7d781c6074e73957814269d6bf040bcd3219b (diff)
downloademacs-9076a823112d9decd0343cb2265eae8bb9c4c50f.tar.gz
emacs-9076a823112d9decd0343cb2265eae8bb9c4c50f.zip
(wait_reading_process_input): Lisp_Object/int mixup.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c
index 315b31b728f..854607a2230 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1,6 +1,6 @@
1/* Asynchronous subprocess control for GNU Emacs. 1/* Asynchronous subprocess control for GNU Emacs.
2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 96, 98, 1999, 2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 96, 98, 1999,
3 2001, 2002, 2003 Free Software Foundation, Inc. 3 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
@@ -4296,7 +4296,7 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
4296 proc = chan_process[channel]; 4296 proc = chan_process[channel];
4297 if (NILP (proc)) 4297 if (NILP (proc))
4298 continue; 4298 continue;
4299 if (XPROCESS (proc)->read_output_delay > 0) 4299 if (XINT (XPROCESS (proc)->read_output_delay) > 0)
4300 { 4300 {
4301 check_delay--; 4301 check_delay--;
4302 if (NILP (XPROCESS (proc)->read_output_skip)) 4302 if (NILP (XPROCESS (proc)->read_output_skip))