From: root Date: Mon, 23 Aug 2004 18:48:03 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=8e279a22382e6fbb7e7206269149d883644dfb41;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/src/encoding.C b/src/encoding.C index 90c012c0..4fa4279b 100644 --- a/src/encoding.C +++ b/src/encoding.C @@ -306,5 +306,6 @@ rxvt_compose (unicode_t c1, unicode_t c2) bool unicode::is_space (unicode_t c) { - return IS_SPACE (c); + return IS_SPACE (c) + || c == 0x09; // exclude tabs, too, as we store them in the buffer } diff --git a/src/xpm.C b/src/xpm.C index 8db48ba6..66c8dcf7 100644 --- a/src/xpm.C +++ b/src/xpm.C @@ -352,6 +352,7 @@ rxvt_term::set_bgPixmap (const char *file) XFreePixmap (display->display, bgPixmap.pixmap); bgPixmap.pixmap = None; } + XSetWindowBackground (display->display, TermWin.vt, pix_colors[Color_bg]); if (*file != '\0') @@ -383,7 +384,7 @@ rxvt_term::set_bgPixmap (const char *file) if ((p = strchr (file, ';')) == NULL) p = strchr (file, '\0'); - rxvt_warn ("couldn't load XPM file \"%.*s\", ignoring.", (p - file), file); + rxvt_warn ("couldn't load XPM file \"%.*s\", ignoring.\n", (p - file), file); } free (f);