mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-04 07:21:14 -03:00
Actually work around https://github.com/fish-shell/fish-shell/issues/278
This commit is contained in:
@@ -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 = {};
|
||||
|
||||
Reference in New Issue
Block a user