diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-02-12 13:12:17 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-02-12 13:12:17 +0000 |
commit | 06461417be8dd0edf8160424efec63db67c94aac (patch) | |
tree | 18be4ff64b214e1ca772ecb7fd558b4499ee266f /src/process.c | |
parent | 713415fc0a1ed9507224241c78524554297ad85f (diff) | |
download | emacs-06461417be8dd0edf8160424efec63db67c94aac.tar.gz |
(Fopen_network_stream) [POLL_FOR_INPUT]: Register
unwind function to undo the effect of stopping atimers.
Diffstat (limited to 'src/process.c')
-rw-r--r-- | src/process.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/process.c b/src/process.c index 9fe2c5af942..dab701a9e7f 100644 --- a/src/process.c +++ b/src/process.c @@ -1835,6 +1835,7 @@ Fourth arg SERVICE is name of the service desired, or an integer\n\ Some kernels have a bug which causes retrying connect to fail after a connect. Polling can interfere with gethostbyname too. */ #ifdef POLL_FOR_INPUT + record_unwind_protect (unwind_stop_other_atimers, Qnil); bind_polling_period (10); #endif |