From: Richard M. Stallman Date: Sun, 1 Aug 1993 07:45:35 +0000 (+0000) Subject: (main): Generate a SIGIO as soon as we've initialized. X-Git-Tag: emacs-19.34~11459 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4d09905307e94ddcacb765c6f83cd97ef9918d3e;p=emacs.git (main): Generate a SIGIO as soon as we've initialized. --- diff --git a/lib-src/timer.c b/lib-src/timer.c index d6419ef4cc8..466425e30a8 100644 --- a/lib-src/timer.c +++ b/lib-src/timer.c @@ -293,8 +293,12 @@ main (argc, argv) } #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 */