repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: c5cf97da34e732ffd5f637d8dadbca6fce42f1d3: path_to: revision_to:
commit c5cf97da34e732ffd5f637d8dadbca6fce42f1d3 Author: Marc LehmannDate: Wed Aug 1 17:39:28 2007 +0000 *** empty log message *** diff --git a/Changes b/Changes
--- 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
--- 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;
-----END OF PAGE-----