1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-30 19:20:53 +02:00

17931: Philippe: restore blocking of SIGTERM in interactive shell

This commit is contained in:
Peter Stephenson 2002-11-13 10:24:22 +00:00
parent f598130ee8
commit 054038d8dd
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2002-11-13 Peter Stephenson <pws@csr.com>
* 17931: Philippe Troin <phil@fifi.org>: Src/init.c: restore
ignoring of SIGTERM in interactive shells.
2002-11-12 Oliver Kiddle <opk@zsh.org>
* Zvi Har'El: Completion/Unix/Command/_rcs: complete also for rcsdiff

View file

@ -904,6 +904,7 @@ init_signals(void)
#endif
if (interact) {
install_handler(SIGALRM);
signal_ignore(SIGTERM);
}
if (jobbing) {
signal_ignore(SIGTTOU);