From: Chong Yidong Date: Thu, 29 Jan 2009 14:32:49 +0000 (+0000) Subject: (emacs_write): Use process_pending_signals. X-Git-Tag: emacs-pretest-23.0.90~84 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=55310b94ebec5a1614ea52454e088d50580a175b;p=emacs.git (emacs_write): Use process_pending_signals. --- 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; }