Mercurial > emacs
changeset 4392:b64b1b80f371
(main): Generate a SIGIO as soon as we've initialized.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 01 Aug 1993 07:45:35 +0000 |
parents | 2f181ad12c41 |
children | 3e20f4e3dbaa |
files | lib-src/=timer.c |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lib-src/=timer.c Sun Aug 01 07:09:22 1993 +0000 +++ b/lib-src/=timer.c Sun Aug 01 07:45:35 1993 +0000 @@ -293,8 +293,12 @@ } #endif /* USG */ + /* In case Emacs sent some input before we set up + the handling of SIGIO, read it now. */ + kill (0, SIGIO); + for (;;) - pause (); + pause (); } /* timer.c ends here */