From: root Date: Fri, 27 Jan 2006 18:36:43 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=871c3e05836bdbfe96270c02d61dee84d5c9fbeb;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/Changes b/Changes index ba4dea31..f6bb032e 100644 --- a/Changes +++ b/Changes @@ -12,6 +12,9 @@ WISH: just for fun, do shade and tint with XRender. WISH: http://www120.pair.com/mccarthy/nextstep/intro.htmld/Workspace.html is the correct nextstep look. DUMB: support tex fonts +7.4 + - screen background wasn't always erased properly when scrolling. + 7.3a Thu Jan 26 01:08:25 CET 2006 - removed stoopid debugging message. diff --git a/src/screen.C b/src/screen.C index 2b5dadeb..67b02034 100644 --- a/src/screen.C +++ b/src/screen.C @@ -642,16 +642,7 @@ rxvt_term::scr_scroll_text (int row1, int row2, int count) NOTHROW // erase newly scrolled-in lines for (int i = count; i--; ) - { - // basically this is a slightly optimized scr_blank_screen_mem - // it is worth the effort on slower machines - line_t &l = ROW(nrow - 1 - i); - - scr_blank_line (l, 0, l.l, rstyle); - - l.l = 0; - l.f = 0; - } + scr_blank_screen_mem (ROW(nrow - 1 - i), rstyle); // now copy lines below the scroll region bottom to the // bottom of the screen again, so they look as if they diff --git a/src/version.h b/src/version.h index 94771fa8..b844bfcc 100644 --- a/src/version.h +++ b/src/version.h @@ -1,3 +1,3 @@ // VERSION _must_ be \d.\d+ -#define VERSION "7.3a" +#define VERSION "7.4" #define DATE "2006-01-26"