diff options
author | LemonBoy <thatlemon@gmail.com> | 2016-03-21 14:19:43 +0100 |
---|---|---|
committer | LemonBoy <thatlemon@gmail.com> | 2016-03-22 22:50:24 +0100 |
commit | 897016131eb2712095a7facaf9ab307164976450 (patch) | |
tree | dd54894a75b0757da22b37b9e79eb6f4c5e1cea3 /src/fe-text/term-terminfo.c | |
parent | f7658640fba5536e6dbfc2014b28523d8510e970 (diff) | |
download | irssi-897016131eb2712095a7facaf9ab307164976450.zip |
Don't call terminfo_cont() twice on resume
Fixes some weirdness when using ^Z with zsh.
Diffstat (limited to 'src/fe-text/term-terminfo.c')
-rw-r--r-- | src/fe-text/term-terminfo.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/fe-text/term-terminfo.c b/src/fe-text/term-terminfo.c index 3582b9e4..ed9c8d32 100644 --- a/src/fe-text/term-terminfo.c +++ b/src/fe-text/term-terminfo.c @@ -611,8 +611,6 @@ void term_stop(void) { terminfo_stop(current_term); kill(getpid(), SIGTSTP); - terminfo_cont(current_term); - irssi_redraw(); } static int input_utf8(const unsigned char *buffer, int size, unichar *result) |