st
simple terminal
git clone https://9o.is/git/st.git
commit ebdda327ba22d4523a54074026633bf2ad0002e1 parent 686d0ac303f9d305093e6c49c351cc2faaf8b94e Author: noname@inventati.org <noname@inventati.org> Date: Sat, 11 Apr 2015 19:30:12 +0200 Move tresize comments around. Diffstat:
| M | st.c | | | 11 | +++++------ |
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/st.c b/st.c @@ -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)); }