Mercurial > emacs
changeset 109370:a0caeaa02476
(wait_reading_process_output) [!subprocesses]: Convert arg list to ANSI C.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Mon, 12 Jul 2010 21:44:35 +0300 |
parents | c200b37ae7d1 |
children | bf0e558ade02 |
files | src/ChangeLog src/process.c |
diffstat | 2 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Mon Jul 12 21:36:48 2010 +0300 +++ b/src/ChangeLog Mon Jul 12 21:44:35 2010 +0300 @@ -5,6 +5,8 @@ subprocesses is not defined. (close_process_descs): Move to the part shared by non-subprocesses systems. + (wait_reading_process_output) [!subprocesses]: Convert arg list to + ANSI C. 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
--- a/src/process.c Mon Jul 12 21:36:48 2010 +0300 +++ b/src/process.c Mon Jul 12 21:44:35 2010 +0300 @@ -6952,12 +6952,10 @@ Return true if we received input from any process. */ int -wait_reading_process_output (time_limit, microsecs, read_kbd, do_display, - wait_for_cell, wait_proc, just_wait_proc) - int time_limit, microsecs, read_kbd, do_display; - Lisp_Object wait_for_cell; - struct Lisp_Process *wait_proc; - int just_wait_proc; +wait_reading_process_output (int time_limit, int microsecs, int read_kbd, + int do_display, + Lisp_Object wait_for_cell, + struct Lisp_Process *wait_proc, int just_wait_proc) { register int nfds; EMACS_TIME end_time, timeout;