summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2009-01-29 14:32:49 +0000
committerChong Yidong <cyd@stupidchicken.com>2009-01-29 14:32:49 +0000
commit55310b94ebec5a1614ea52454e088d50580a175b (patch)
tree4d8752b4fa8b6b891ab6d998885a750525669ef3 /src
parenta8fe32423135615b1629e2e90a8c52234d4913c9 (diff)
downloademacs-55310b94ebec5a1614ea52454e088d50580a175b.tar.gz
(emacs_write): Use process_pending_signals.
Diffstat (limited to 'src')
-rw-r--r--src/sysdep.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index c1f193f96b6..dfefed7679c 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -2539,10 +2539,7 @@ emacs_write (fildes, buf, nbyte)
#ifdef SYNC_INPUT
/* I originally used `QUIT' but that might causes files to
be truncated if you hit C-g in the middle of it. --Stef */
- if (interrupt_input_pending)
- handle_async_input ();
- if (pending_atimers)
- do_pending_atimers ();
+ process_pending_signals ();
#endif
continue;
}