diff options
author | Rich Felker <dalias@aerifal.cx> | 2006-10-13 09:54:47 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2006-10-13 09:54:47 +0000 |
commit | b79176f49a543a892769f0d0a292841a02418025 (patch) | |
tree | d4aedf53983a91ca8729a1dee348e2418e574cd4 /xlib.c | |
parent | 1be19cd1616635c07a4955a2619b9aeaa3efebc6 (diff) |
nonlatin input, attempt 2
Diffstat (limited to 'xlib.c')
-rw-r--r-- | xlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -112,9 +112,9 @@ int uudisp_open(struct uudisp *d) XMapWindow(p->display, p->window); - XSetLocaleModifiers("@im=none"); + //XSetLocaleModifiers("@im=none"); p->im = XOpenIM(p->display, 0, 0, 0); - if (p->im) p->ic = XCreateIC(p->im, XNInputStyle, XIMPreeditNothing|XIMStatusNothing); + if (p->im) p->ic = XCreateIC(p->im, XNInputStyle, XIMPreeditNothing|XIMStatusNothing, NULL); resize_window(d, px_w, px_h); |