From: root Date: Wed, 1 Aug 2007 17:39:28 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=6a0791b388b9716106c3b635fb6003c03b7fd391;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/Changes b/Changes index 1ec78a87..2d981417 100644 --- a/Changes +++ b/Changes @@ -19,8 +19,6 @@ WISH: kick out xpm.C, replace by pixbuf DUMB: support tex fonts TODO: really enable libafterimage by default (6mb => 10mb rss without using it)? -TODO: borderLess resource might not work on some systems - might be another - gentoo phantom bug or a real problem, such as using it too early. TODO: incremental reggex search should not nuke the selection, its evilish 8. - new option: skipScroll/-ss, enabled by default. @@ -41,6 +39,8 @@ TODO: incremental reggex search should not nuke the selection, its evilish extension (tpope). - compile out of the box on Solaris 10 (exg). - fix MappingNotify events (reported by Stephan Walter). + - zero-initialise mwmhints, this seems to solve all sorts of minor + problems. 8.2 Sat Feb 17 21:35:28 CET 2007 - fix make depend in src/, reported by exg. diff --git a/src/init.C b/src/init.C index 022586d4..5dac46e0 100644 --- a/src/init.C +++ b/src/init.C @@ -884,7 +884,7 @@ rxvt_term::create_windows (int argc, const char *const *argv) XClassHint classHint; XWMHints wmHint; #if ENABLE_FRILLS - MWMHints mwmhints; + MWMHints mwmhints = { }; #endif XGCValues gcvalue; XSetWindowAttributes attributes;