diff options
| author | Richard M. Stallman | 1993-08-01 07:45:35 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-08-01 07:45:35 +0000 |
| commit | 4d09905307e94ddcacb765c6f83cd97ef9918d3e (patch) | |
| tree | 9ee35c840975bbd4e409cdb2fcc32baabd7ca1b3 /lib-src | |
| parent | a5024e2acead4459c2450ff3c2ba5c48a52f56ac (diff) | |
| download | emacs-4d09905307e94ddcacb765c6f83cd97ef9918d3e.tar.gz emacs-4d09905307e94ddcacb765c6f83cd97ef9918d3e.zip | |
(main): Generate a SIGIO as soon as we've initialized.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/timer.c | 6 |
1 files changed, 5 insertions, 1 deletions
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) | |||
| 293 | } | 293 | } |
| 294 | #endif /* USG */ | 294 | #endif /* USG */ |
| 295 | 295 | ||
| 296 | /* In case Emacs sent some input before we set up | ||
| 297 | the handling of SIGIO, read it now. */ | ||
| 298 | kill (0, SIGIO); | ||
| 299 | |||
| 296 | for (;;) | 300 | for (;;) |
| 297 | pause (); | 301 | pause (); |
| 298 | } | 302 | } |
| 299 | 303 | ||
| 300 | /* timer.c ends here */ | 304 | /* timer.c ends here */ |