mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 21:44:16 +00:00
Actually work around https://github.com/fish-shell/fish-shell/issues/278
This commit is contained in:
parent
c5ffe8a974
commit
a9b119833a
1 changed files with 2 additions and 2 deletions
|
@ -635,10 +635,10 @@ void get_signals_with_handlers(sigset_t *set)
|
|||
{
|
||||
/* Don't include SIGTTIN or SIGTTOU until we figure out how to set the controlling terminal in POSIX_SPAWN */
|
||||
#ifdef SIGTTIN
|
||||
if (i == SIGTTIN) continue;
|
||||
if (lookup[i].signal == SIGTTIN) continue;
|
||||
#endif
|
||||
#ifdef SIGTTOU
|
||||
if (i == SIGTTOU) continue;
|
||||
if (lookup[i].signal == SIGTTOU) continue;
|
||||
#endif
|
||||
|
||||
struct sigaction act = {};
|
||||
|
|
Loading…
Reference in a new issue