---
st.c | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/st.c b/st.c
index 3b45c42..51bd40c 100644
--- a/st.c
+++ b/st.c
_AT_@ -2780,17 +2780,16 @@ tresize(int col, int row) {
return;
}
- /* free unneeded rows */
+ /*
+ * slide screen to keep cursor where we expect it -
+ * tscrollup would work here, but we can optimize to
+ * memmove because we're freeing the earlier lines
+ */
for(i = 0; i < slide; i++) {
free(term.line[i]);
free(term.alt[i]);
}
if(slide > 0) {
- /*
- * slide screen to keep cursor where we expect it -
- * tscrollup would work here, but we can optimize to
- * memmove because we're freeing the earlier lines
- */
memmove(term.line, term.line + slide, row * sizeof(Line));
memmove(term.alt, term.alt + slide, row * sizeof(Line));
}
--
1.8.4
Received on Sat Apr 11 2015 - 19:29:51 CEST
This archive was generated by hypermail 2.3.0 : Sat Apr 11 2015 - 19:36:12 CEST