X-Git-Url: https://jasonwoof.com/gitweb/?p=st.git;a=blobdiff_plain;f=st.c;h=0e228a7a6b1132f41145a2e75571aaad361e7d10;hp=8f190180ae4fea9ded1754e112c899096e85c742;hb=177d888dff2fdf987dfa7fc3eb8495fa107879ad;hpb=8f3e6a577d0d9733d356c0b691fea7b523d8ade7 diff --git a/st.c b/st.c index 8f19018..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 @@ -2661,7 +2664,6 @@ tresize(int col, int row) { int mincol = MIN(col, term.col); int slide = term.c.y - row + 1; bool *bp; - Line *orig; TCursor c; if(col < 1 || row < 1) { @@ -2724,9 +2726,8 @@ tresize(int col, int row) { /* make use of the LIMIT in tmoveto */ tmoveto(term.c.x, term.c.y); /* Clearing both screens (it makes dirty all lines) */ - orig = term.line; c = term.c; - do { + for(i = 0; i < 2; i++) { if(mincol < col && 0 < minrow) { tclearregion(mincol, 0, col - 1, minrow - 1); } @@ -2735,7 +2736,7 @@ tresize(int col, int row) { } tswapscreen(); tcursor(CURSOR_LOAD); - } while(orig != term.line); + } term.c = c; }