mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-20 16:11:14 -03:00
Fix bug that would accidentally disable interactive mode on OS X when writing the titlebar message on some systems. Found by Nick Pilon
darcs-hash:20060206152015-ac50b-63d86ca778c240012bbe1e0d28062591a10f3a54.gz
This commit is contained in:
2
reader.c
2
reader.c
@@ -607,7 +607,6 @@ void reader_write_title()
|
||||
array_list_t l;
|
||||
wchar_t *term = env_get( L"TERM" );
|
||||
int was_interactive = is_interactive;
|
||||
is_interactive = 0;
|
||||
|
||||
/*
|
||||
This is a pretty lame heuristic for detecting terminals that do
|
||||
@@ -629,6 +628,7 @@ void reader_write_title()
|
||||
|
||||
al_init( &l );
|
||||
|
||||
is_interactive = 0;
|
||||
if( exec_subshell( title, &l ) != -1 )
|
||||
{
|
||||
int i;
|
||||
|
||||
Reference in New Issue
Block a user