ttn pushed a commit to branch master in repository elpa. commit b1ab31e597ca455389934f1f8e02329fc026f508 Author: Thien-Thi Nguyen <t...@gnu.org> Date: Thu Jan 30 17:09:09 2014 +0100
[gnugo] Wait at most 30sec for subproc output chunk. * packages/gnugo/gnugo.el (gnugo-synchronous-send/return): Specify TIMEOUT of 30 seconds to ‘accept-process-output’. --- packages/gnugo/gnugo.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/packages/gnugo/gnugo.el b/packages/gnugo/gnugo.el index cb92f46..3a38a80 100644 --- a/packages/gnugo/gnugo.el +++ b/packages/gnugo/gnugo.el @@ -381,7 +381,7 @@ STRING omits the two trailing newlines. See also `gnugo-query'." (let (rv) ;; type change => break (while (stringp (setq rv (gnugo-get :sync-return))) - (accept-process-output proc)) + (accept-process-output proc 30)) (gnugo-put :sync-return "") rv)))