On 26 May 2000, Alexandre Julliard wrote:
> Mathieu de Naurois <[EMAIL PROTECTED]> writes:
>
> > I had a problem with all version of wine: when I type ',' (comma), I
> > always get 'm' although the keyboard mapping is correctly
> > defined. This is because ',' takes the place of a standard key and
> > is therefore translated to VK_M.
> >
> > I changed the order of two loop in X11DRV_KEYBOARD_Init(void)
> > (keyboard.c) so the code is first looked in the special caracters
> > table and after if the standards keys.
>
> Shouldn't we rather merge the two loops and use whatever symbol we
> find first? Ove?
Well, that would also be an option, it seems, perhaps more efficient. But
these VK loops were there before my scancode rewrite (and I didn't touch
them), so I'm not authoritative on whether there's a reason for the loops
being the way they are.