1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(alarm_signal_handler) [USG && !POSIX_SIGNALS]:

Remove code setting signal handler.
This commit is contained in:
Gerd Moellmann 2001-10-08 09:42:24 +00:00
parent 402c9a5121
commit 3ecd9cc373
2 changed files with 3 additions and 6 deletions

View File

@ -1,5 +1,8 @@
2001-10-08 Gerd Moellmann <gerd@gnu.org>
* atimer.c (alarm_signal_handler) [USG && !POSIX_SIGNALS]:
Remove code setting signal handler.
* sysdep.c (child_setup_tty) [HAVE_TERMIO || HAVE_TERMIOS]:
Clear ICRNL and INLCR. From Daiki Ueno <ueno@unixuser.org>.

View File

@ -391,12 +391,6 @@ alarm_signal_handler (signo)
EMACS_GET_TIME (now);
}
#if defined (USG) && !defined (POSIX_SIGNALS)
/* USG systems forget handlers when they are used;
must reestablish each time. */
signal (SIGALRM, alarm_signal_handler);
#endif /* USG */
set_alarm ();
}