emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Next pretest


From: Jason Rumney
Subject: Re: Next pretest
Date: Thu, 28 Jan 2010 00:18:01 +0800
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.91 (gnu/linux)

Juanma Barranquero <address@hidden> writes:

> (I've changed three trivial typos emacs_ev. to emacs_ev->)

Thanks, I don't have a W32 installation here to try it on.
> In key_event, control is going through this branch
>
>       else if (event->uChar.AsciiChar < 128)

try changing that to:

     else if (event->uChar.AsciiChar > 0 && event->uChar.AsciiChar < 128)

That should catch the following:

>     uChar = {
>       UnicodeChar = 164 L'¤\000',
>       AsciiChar = -92 '¤'
>     },





reply via email to

[Prev in Thread] Current Thread [Next in Thread]