repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: 652b0e76d7f18252e4d8324bf26db0e77202cf9a: path_to: revision_to:
commit 652b0e76d7f18252e4d8324bf26db0e77202cf9a Author: Marc LehmannDate: Sat Mar 11 00:12:37 2006 +0000 *** empty log message *** diff --git a/src/feature.h b/src/feature.h
--- a/src/feature.h +++ b/src/feature.h @@ -62,8 +62,8 @@ /* * Forcefully disable double-buffering for xft. On some card/driver combination - * this slightly decreases performance, on most it greatly helps it. - * The slowdown is small, so it * should normally be enabled. + * enabling it slightly decreases performance, on most it greatly helps it. + * The slowdown is small, so it should normally be enabled. */ /* #define FORCE_UNBUFFERED_XFT */ diff --git a/src/rxvtfont.C b/src/rxvtfont.C
--- a/src/rxvtfont.C
+++ b/src/rxvtfont.C
@@ -1276,14 +1276,14 @@ rxvt_font_xft::draw (rxvt_drawable &d, int x, int y,
int w = term->fwidth * len;
int h = term->fheight;
- bool buffered = 0
+ bool buffered = bg >= 0 // we don't use a transparent bg
#ifndef FORCE_UNBUFFERED_XFT
# if defined(XPM_BACKGROUND) || defined(TRANSPARENT)
|| !term->am_transparent // we aren't transparent
|| term->am_pixmap_trans // we have a pixmap
# endif
- || bg >= 0; // we don't use a transparent bg
#endif
+ ;
// cut trailing spaces
while (len && text [len - 1] == ' ')
-----END OF PAGE-----