diff --git a/event.c b/event.c index 374b4f415..b2ce66559 100644 --- a/event.c +++ b/event.c @@ -325,7 +325,7 @@ static void event_fire_internal( event_t *event ) array_list_t *fire=0; int was_subshell = is_subshell; - int was_interactive = is_interactive; +// int was_interactive = is_interactive; /* First we free all events that have been removed @@ -402,7 +402,7 @@ static void event_fire_internal( event_t *event ) they are marked as non-interactive and as a subshell */ is_subshell=1; - is_interactive=0; +// is_interactive=0; eval( (wchar_t *)b->buff, 0, TOP ); } @@ -411,7 +411,7 @@ static void event_fire_internal( event_t *event ) Restore interactivity flags */ is_subshell = was_subshell; - is_interactive = was_interactive; +// is_interactive = was_interactive; if( b ) {