# HG changeset patch # User Lars Magne Ingebrigtsen # Date 1284738469 -7200 # Node ID 015a63c2574f1a1ef3a4ae500e520126fb4cc7ef # Parent 18b3ea98b1f4cfeadc5351e002d80ebda42559f2 * process.c (wait_reading_process_output): Don't message about accept-process-output unless the time limit really is zero. diff -r 18b3ea98b1f4 -r 015a63c2574f src/ChangeLog --- a/src/ChangeLog Fri Sep 17 16:37:14 2010 +0200 +++ b/src/ChangeLog Fri Sep 17 17:47:49 2010 +0200 @@ -1,3 +1,8 @@ +2010-09-17 Lars Magne Ingebrigtsen + + * process.c (wait_reading_process_output): Don't message about + accept-process-output unless the time limit really is zero. + 2010-09-17 Stefan Monnier * frame.c (Ftool_bar_pixel_width): YAILOM (Yet another diff -r 18b3ea98b1f4 -r 015a63c2574f src/process.c --- a/src/process.c Fri Sep 17 16:37:14 2010 +0200 +++ b/src/process.c Fri Sep 17 17:47:49 2010 +0200 @@ -4403,7 +4403,7 @@ FD_ZERO (&Connecting); #endif - if (time_limit == 0 && wait_proc && !NILP (Vinhibit_quit) + if (time_limit == 0 && microsecs == 0 && wait_proc && !NILP (Vinhibit_quit) && !(CONSP (wait_proc->status) && EQ (XCAR (wait_proc->status), Qexit))) message ("Blocking call to accept-process-output with quit inhibited!!");