]> git.armaanb.net Git - st.git/commitdiff
reset the alt screen in treset
authorQuentin Carbonneaux <q@c9x.me>
Mon, 18 Aug 2014 17:20:41 +0000 (19:20 +0200)
committerRoberto E. Vargas Caballero <k0ga@shike2.com>
Tue, 19 Aug 2014 10:57:43 +0000 (12:57 +0200)
Signed-off-by: Roberto E. Vargas Caballero <k0ga@shike2.com>
st.c

diff --git a/st.c b/st.c
index 65473f01b0cd9952d793a4199601f1f1eb6b152b..0e228a7a6b1132f41145a2e75571aaad361e7d10 100644 (file)
--- 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