From: root Date: Sat, 10 Nov 2007 23:10:55 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=843b1d48a3a2b37d074b25298ed0bed1265094db;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/Changes b/Changes index dd8191c2..c31fcaed 100644 --- a/Changes +++ b/Changes @@ -19,6 +19,9 @@ DUMB: support tex fonts TODO: align default value of cutchars with rxvt.1.pod and add it as a fallback in perl 'selection' http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=377194 + - fix a serious bug while setting the XIM destroy callback + on (typical) 64 bit systems. + 8.4 Sat Oct 27 14:02:13 CEST 2007 - overhaul of the transparency/pixmap code (sasha). - fix possible race betwen visual bell and poweron. diff --git a/src/rxvttoolkit.C b/src/rxvttoolkit.C index 59bff554..248bc6e9 100644 --- a/src/rxvttoolkit.C +++ b/src/rxvttoolkit.C @@ -185,7 +185,7 @@ rxvt_xim::ref_init () ximcallback.client_data = (XPointer)this; ximcallback.callback = im_destroy_cb; - XSetIMValues (xim, XNDestroyCallback, &ximcallback, 0); + XSetIMValues (xim, XNDestroyCallback, &ximcallback, (char *)0); return true; }