From 4e77ee45164f745992dbf575f2b6c0f3797dabf0 Mon Sep 17 00:00:00 2001 From: axel Date: Tue, 7 Feb 2006 01:20:15 +1000 Subject: [PATCH] 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 --- reader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reader.c b/reader.c index 56d3730c5..03c7a409c 100644 --- a/reader.c +++ b/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;