diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-01-29 14:32:49 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-01-29 14:32:49 +0000 |
commit | 55310b94ebec5a1614ea52454e088d50580a175b (patch) | |
tree | 4d8752b4fa8b6b891ab6d998885a750525669ef3 /src | |
parent | a8fe32423135615b1629e2e90a8c52234d4913c9 (diff) | |
download | emacs-55310b94ebec5a1614ea52454e088d50580a175b.tar.gz |
(emacs_write): Use process_pending_signals.
Diffstat (limited to 'src')
-rw-r--r-- | src/sysdep.c | 5 |
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; } |