WISH: just for fun, do shade and tint with XRender.
- make it compile without SMART_RESIZE again.
+ - enable slow link support by default.
- _major_ rewrite of internal line handling logic:
# - re-flow on resize, lines get wrapped instead of winged.
# - circular line buffer (substantially speeds up scrolling).
# - slightly less memory usage.
# - slight overall speed improvements.
+ - partial-screen scrolls no longer end up in the scrollback
+ buffer.
5.9 Sat Dec 17 21:53:17 CET 2005
- fix a bug in the menu code of unknown impact, found by darix.
want_refresh = 1;
num_scr += count;
- if (row1 == 0 && count > 0
+ if (count > 0
+ && row1 == 0
+ && row2 == nrow - 1
&& (current_screen == PRIMARY || options & Opt_secondaryScroll))
{
nsaved = min (nsaved + count, saveLines);