mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
(wait_reading_process_input): Lisp_Object/int mixup.
This commit is contained in:
parent
45c7d781c6
commit
9076a82311
2 changed files with 8 additions and 2 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* process.c (wait_reading_process_input): Lisp_Object/int mixup.
|
||||
|
||||
* dired.c (Ffile_attributes): Lisp_Object/int mixup.
|
||||
|
||||
2004-01-19 Kenichi Handa <handa@m17n.org>
|
||||
|
||||
* fontset.c (fontset_font_pattern): Fix previous change.
|
||||
|
|
|
|||
|
|
@ -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 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
|
|||
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))
|
||||
|
|
|
|||
Loading…
Reference in a new issue