Don't reset the terminal mode in certain circumstances. Fixes issue in Linux with e.g. echo foo ; ftp

Introduce patch from 9d229cd18c
This commit is contained in:
ridiculousfish 2012-10-05 18:23:38 -07:00
parent 14bf057c62
commit b67526aae8

View file

@ -1000,6 +1000,11 @@ static int terminal_return_from_job( job_t *j)
return 0; return 0;
} }
/* Disabling this per https://github.com/adityagodbole/fish-shell/commit/9d229cd18c3e5c25a8bd37e9ddd3b67ddc2d1b72
On Linux, 'cd . ; ftp' prevents you from typing into the ftp prompt
See https://github.com/fish-shell/fish-shell/issues/121
*/
#if 0
/* /*
Restore the shell's terminal modes. Restore the shell's terminal modes.
*/ */
@ -1009,6 +1014,7 @@ static int terminal_return_from_job( job_t *j)
wperror( L"tcsetattr" ); wperror( L"tcsetattr" );
return 0; return 0;
} }
#endif
return 1; return 1;
} }