[dev] [PATCH 3/3] reset the alt screen in treset

From: Quentin Carbonneaux <q_AT_c9x.me>
Date: Mon, 18 Aug 2014 19:20:41 +0200

---
 st.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/st.c b/st.c
index 28e5b50..8488024 100644
--- a/st.c
+++ b/st.c
_AT_@ -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
-- 
2.0.4
Received on Mon Aug 18 2014 - 19:20:41 CEST

This archive was generated by hypermail 2.3.0 : Mon Aug 18 2014 - 19:24:16 CEST