st.c | 11 +++++------ diff --git a/st.c b/st.c index fb37eb51b564107749db184484b45f91512b642b..79bf1c8cb3ae1afd3c929bf4f984e551031171ac 100644 --- a/st.c +++ b/st.c @@ -2779,17 +2779,16 @@ "tresize: error resizing to %dx%d\n", col, 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)); }