diff options
author | noname@inventati.org <noname@inventati.org> | 2015-04-11 19:30:12 +0200 |
---|---|---|
committer | Roberto E. Vargas Caballero <k0ga@shike2.com> | 2015-04-13 09:26:03 +0200 |
commit | 39ae1a4de5c471c8626c80ef1e961f0c83f5199d (patch) | |
tree | 006ee317347447642cf6cc2a6d37d8ec9ecfd20b /st.c | |
parent | 6352502d644d8295ceb2cdf68a5ecbac0891d4a6 (diff) | |
download | st-39ae1a4de5c471c8626c80ef1e961f0c83f5199d.tar.gz st-39ae1a4de5c471c8626c80ef1e961f0c83f5199d.tar.bz2 |
Move tresize comments around.
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -2779,17 +2779,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)); } |