aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2011-11-21 21:39:44 +0100
committerLars Magne Ingebrigtsen2011-11-21 21:39:44 +0100
commit16c1ad08dc0899e6d88971cb08ddc5d6c8fbccef (patch)
tree486193ab1f049cbdf52034f64a7a5bc868f0392b /src/process.c
parent261b6fd466a835692e0b1eedba327eb674d79ca6 (diff)
downloademacs-16c1ad08dc0899e6d88971cb08ddc5d6c8fbccef.tar.gz
emacs-16c1ad08dc0899e6d88971cb08ddc5d6c8fbccef.zip
(wait_reading_process_output): Add comment and URL.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c
index 02eb1122a07..a02ba44ae71 100644
--- a/src/process.c
+++ b/src/process.c
@@ -4625,7 +4625,11 @@ wait_reading_process_output (int time_limit, int microsecs, int read_kbd,
4625 if (! wait_proc) 4625 if (! wait_proc)
4626 { 4626 {
4627 /* We're not waiting on a specific process, so loop 4627 /* We're not waiting on a specific process, so loop
4628 through all the channels and check for data. */ 4628 through all the channels and check for data.
4629 This is a workaround needed for some versions of
4630 the gnutls library -- 2.12.14 has been confirmed
4631 to need it. See
4632 http://comments.gmane.org/gmane.emacs.devel/145074 */
4629 struct Lisp_Process *proc; 4633 struct Lisp_Process *proc;
4630 for (channel = 0; channel < MAXDESC; ++channel) 4634 for (channel = 0; channel < MAXDESC; ++channel)
4631 { 4635 {