Re: keyboard: ISO_Left_Tab

2004-11-06 Thread Walt Ogburn
Hi Andreas, On (a), you are certainly correct. I'll swap the order and resubmit. As for (b), the "if (ret == 0)" just below is followed by an "else" which does the actual unicode conversion. I wanted to put in the tab character and change ret to 1 in time to get into the "else". It the ISO_Lef

Re: keyboard: ISO_Left_Tab

2004-11-06 Thread Andreas Mohr
Hi, On Sat, Nov 06, 2004 at 07:30:20AM -0800, Walt Ogburn wrote: > +/* Special case: X turns shift-tab into ISO_Left_Tab. */ > +/* Here we change it back. */ > +if ((ret == 0) && (keysym == XK_ISO_Left_Tab)) > +{ > +ret = 1; > + lpChar[0] = 0x09; > +} > + > i