From: Quentin Carbonneaux Date: Mon, 18 Aug 2014 17:20:41 +0000 (+0200) Subject: reset the alt screen in treset X-Git-Url: https://jasonwoof.com/gitweb/?p=st.git;a=commitdiff_plain;h=177d888dff2fdf987dfa7fc3eb8495fa107879ad;hp=fa04911c91a049f397337d3436c4a5692da558fa reset the alt screen in treset Signed-off-by: Roberto E. Vargas Caballero --- diff --git a/st.c b/st.c index 65473f0..0e228a7 100644 --- a/st.c +++ b/st.c @@ -1356,9 +1356,12 @@ treset(void) { memset(term.trantbl, sizeof(term.trantbl), CS_USA); term.charset = 0; - tclearregion(0, 0, term.col-1, term.row-1); - tmoveto(0, 0); - tcursor(CURSOR_SAVE); + for(i = 0; i < 2; i++) { + tmoveto(0, 0); + tcursor(CURSOR_SAVE); + tclearregion(0, 0, term.col-1, term.row-1); + tswapscreen(); + } } void