From: root Date: Sun, 20 Feb 2005 02:00:43 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=0585a46a3d9e272dbf5d1e0c3d9c9cc4a42108da;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/Changes b/Changes index 458394d9..98361466 100644 --- a/Changes +++ b/Changes @@ -12,6 +12,9 @@ WISH: OnTheSpot editing, or maybe switch to miiiiiiif WISH: tabbed windows (hey, just use screen...) WISH: just for fun, do shade and tint with XRender. + - use XmbSetWMProperties instead of XSetWMProperties. + - properly update WM_LOCALE. + 5.2 Sun Feb 20 01:48:59 CET 2005 - new option -pty-fd that makes the terminal a slave that uses an existing pty for I/O instead of starting diff --git a/src/command.C b/src/command.C index 0c150aad..0523e011 100644 --- a/src/command.C +++ b/src/command.C @@ -3878,9 +3878,7 @@ rxvt_term::process_xterm_seq (int op, const char *str, unsigned char resp) { set_locale (str); pty.set_utf8_mode (enc_utf8); -# ifdef USE_XIM - im_cb (); -# endif + init_xlocale (); } break; #endif diff --git a/src/init.C b/src/init.C index bf9aa873..f19da415 100644 --- a/src/init.C +++ b/src/init.C @@ -1035,8 +1035,8 @@ rxvt_term::create_windows (int argc, const char *const *argv) wmHint.initial_state = options & Opt_iconic ? IconicState : NormalState; wmHint.window_group = top; - XSetWMProperties (disp, top, NULL, NULL, - (char **)argv, argc, &szHint, &wmHint, &classHint); + XmbSetWMProperties (disp, top, NULL, NULL, (char **)argv, argc, + &szHint, &wmHint, &classHint); /* Enable delete window protocol */ XSetWMProtocols (disp, top, &xa[XA_WM_DELETE_WINDOW], 1);