From 4d09905307e94ddcacb765c6f83cd97ef9918d3e Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 1 Aug 1993 07:45:35 +0000 Subject: [PATCH] (main): Generate a SIGIO as soon as we've initialized. --- lib-src/timer.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 */ -- 2.39.5