[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Blocking call to accept-process-output with quit inhibited!! [11 tim
From: |
Lars Magne Ingebrigtsen |
Subject: |
Re: Blocking call to accept-process-output with quit inhibited!! [11 times] |
Date: |
Fri, 17 Sep 2010 02:36:26 +0200 |
User-agent: |
Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux) |
I think the following patch does what the warning is intended to do:
=== modified file 'src/ChangeLog'
*** src/ChangeLog 2010-09-16 02:11:13 +0000
--- src/ChangeLog 2010-09-17 00:34:41 +0000
***************
*** 1,3 ****
--- 1,8 ----
+ 2010-09-17 Lars Magne Ingebrigtsen <address@hidden>
+
+ * process.c (wait_reading_process_output): Don't message about
+ accept-process-output unless the time limit really is zero.
+
2010-09-14 Kenichi Handa <address@hidden>
* ftfont.c (ftfont_check_otf): Fix the case of checking just
=== modified file 'src/process.c'
*** src/process.c 2010-08-22 15:14:37 +0000
--- src/process.c 2010-09-17 00:33:19 +0000
***************
*** 4403,4409 ****
FD_ZERO (&Connecting);
#endif
! if (time_limit == 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!!");
--- 4403,4409 ----
FD_ZERO (&Connecting);
#endif
! 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!!");
--
(domestic pets only, the antidote for overdose, milk.)
address@hidden * Lars Magne Ingebrigtsen
- Re: Blocking call to accept-process-output with quit inhibited!! [11 times], (continued)
Re: Blocking call to accept-process-output with quit inhibited!! [11 times], Lars Magne Ingebrigtsen, 2010/09/07
- Re: Blocking call to accept-process-output with quit inhibited!! [11 times], Stefan Monnier, 2010/09/08
- Re: Blocking call to accept-process-output with quit inhibited!! [11 times], Lars Magne Ingebrigtsen, 2010/09/08
- Re: Blocking call to accept-process-output with quit inhibited!! [11 times], Andreas Schwab, 2010/09/08
- Re: Blocking call to accept-process-output with quit inhibited!! [11 times], Lars Magne Ingebrigtsen, 2010/09/08
- Re: Blocking call to accept-process-output with quit inhibited!! [11 times], Stefan Monnier, 2010/09/08
- Re: Blocking call to accept-process-output with quit inhibited!! [11 times], Lars Magne Ingebrigtsen, 2010/09/08
- Re: Blocking call to accept-process-output with quit inhibited!! [11 times],
Lars Magne Ingebrigtsen <=
- Re: Blocking call to accept-process-output with quit inhibited!! [11 times], Stefan Monnier, 2010/09/17