diff options
author | Quentin Carbonneaux <q@c9x.me> | 2014-08-18 19:20:41 +0200 |
---|---|---|
committer | Roberto E. Vargas Caballero <k0ga@shike2.com> | 2014-08-19 12:57:43 +0200 |
commit | 177d888dff2fdf987dfa7fc3eb8495fa107879ad (patch) | |
tree | 0dc16f44530459aa02f161d748a54e53e195e42c | |
parent | fa04911c91a049f397337d3436c4a5692da558fa (diff) | |
download | st-177d888dff2fdf987dfa7fc3eb8495fa107879ad.tar.gz st-177d888dff2fdf987dfa7fc3eb8495fa107879ad.zip |
reset the alt screen in treset
Signed-off-by: Roberto E. Vargas Caballero <k0ga@shike2.com>
-rw-r--r-- | st.c | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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 | ||
1364 | void | 1367 | void |