From 8e279a22382e6fbb7e7206269149d883644dfb41 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 23 Aug 2004 18:48:03 +0000 Subject: [PATCH] *** empty log message *** --- src/encoding.C | 3 ++- src/xpm.C | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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); -- 2.34.1