# HG changeset patch # User Eli Zaretskii # Date 1278960275 -10800 # Node ID a0caeaa024764145c5e186d39034c5d7ea4c3c55 # Parent c200b37ae7d1cef345e13172839ab9cc2b1d025d (wait_reading_process_output) [!subprocesses]: Convert arg list to ANSI C. diff -r c200b37ae7d1 -r a0caeaa02476 src/ChangeLog --- 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 diff -r c200b37ae7d1 -r a0caeaa02476 src/process.c --- 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;