terminfo-core: Don't send smkx/rmkx

Partially reverts b5b73cb.

Partially, because the commit is mostly unrelated whitespace changes,
but also because I left the TI_smkx and TI_rmkx caps in there,
to reconsider later.
This commit is contained in:
dequis 2016-03-21 02:51:25 -03:00
commit aaf18ee15a

View file

@ -532,9 +532,6 @@ void terminfo_cont(TERM_REC *term)
if (term->TI_smcup)
tput(tparm(term->TI_smcup));
if (term->TI_smkx)
tput(tparm(term->TI_smkx));
terminfo_input_init(term);
}
@ -549,9 +546,6 @@ void terminfo_stop(TERM_REC *term)
if (term->TI_rmcup)
tput(tparm(term->TI_rmcup));
if (term->TI_rmkx)
tput(tparm(term->TI_rmkx));
/* reset input settings */
terminfo_input_deinit(term);
fflush(term->out);