aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/st.c b/st.c
index 65473f0..0e228a7 100644
--- a/st.c
+++ b/st.c
@@ -1356,9 +1356,12 @@ treset(void) {
1356 memset(term.trantbl, sizeof(term.trantbl), CS_USA); 1356 memset(term.trantbl, sizeof(term.trantbl), CS_USA);
1357 term.charset = 0; 1357 term.charset = 0;
1358 1358
1359 tclearregion(0, 0, term.col-1, term.row-1); 1359 for(i = 0; i < 2; i++) {
1360 tmoveto(0, 0); 1360 tmoveto(0, 0);
1361 tcursor(CURSOR_SAVE); 1361 tcursor(CURSOR_SAVE);
1362 tclearregion(0, 0, term.col-1, term.row-1);
1363 tswapscreen();
1364 }
1362} 1365}
1363 1366
1364void 1367void