On Wed, Oct 30, 2002 at 09:35:08AM +0330, Arash Zeini wrote:
>On Tuesday 29 October 2002 22:40, Roozbeh Pournader wrote:
>
>> On Tue, 29 Oct 2002, Aryan Ameri wrote:
>> > I noticed that the Farsi (fa-IR) keyboard layout that comes with the
>> > latest version of XFree86 is a not a fully functional
>>> But my question is always unanswered.
>>> Will Xutf8LookupString supports Unicode KeySyms without strings
Good question. I've always assumed it did, but I've really got no
idea.
JL> So can I modify the X11 Xutf8LookupString function ?
If it doesn't have this functionality yet, go for it, by
Markus Kuhn a écrit :
> X.Org is still distributing an outdated X{mb,wc}LookupString function
> that does not handle keysym >= 0x0100, but that implementation also
> has quite a number of bugs in its keysym->Unicode table and therefore
> should not be used at all.
>
Well XFree86 seems more u
Jean-Marc Lienher wrote on 2002-11-10 18:32 UTC:
> The Xterm patch should look like this :
> --
> ret = Xutf8LookupString(ic, event, buf, 20, &keysym, &status);
>
> if (ret == 0 && keysym & 0xFF00 == 0x0100) {
> ret = unicod
Hi,
At Mon, 11 Nov 2002 09:57:43 +0100,
Jean-Marc Lienher wrote:
> So can I modify the X11 Xutf8LookupString function ?
> I don't think that there is compatiblity issue because KeySym
> greater than 0x0100 where unused in past.
I think it is a good idea, though I am not an expert of XIM.
It
Hi,
Tomohiro KUBOTA a écrit :
> At Sun, 10 Nov 2002 19:32:42 +0100,
> Jean-Marc Lienher wrote:
>
> > But my question is always unanswered.
> > Will Xutf8LookupString supports Unicode KeySyms without strings
> > or must I patch Xterm ?
> >
> > The Xterm patch should look like this :
> > --