On Wed, Oct 15, 2008 at 11:14 PM, hiro <[EMAIL PROTECTED]> wrote:
> Kris has done quite some changes;)
> I'm testing now, I guess you'll have to apply this diff for making it work.
>
> diff -r 361ab709dd0e cmd/menu/menu.c
> --- a/cmd/menu/menu.c   Wed Oct 15 16:08:56 2008 -0400
> +++ b/cmd/menu/menu.c   Wed Oct 15 23:08:53 2008 +0200
> @@ -246,8 +246,8 @@
>        if(IsFunctionKey(ksym)
>        || IsMiscFunctionKey(ksym)
>        || IsKeypadKey(ksym)
> -       || IsPrivateKeypadKey(ksym))
> -       || IsPFKey(ksym)
> +       || IsPrivateKeypadKey(ksym)
> +       || IsPFKey(ksym))
>                return;
>
>        if(e->state & ControlMask) {
>

Oh, I just saw, that isPFKey(kesym) appears multiple times now. it's
rather just
-       || IsPrivateKeypadKey(ksym))
-       || IsPFKey(ksym)
+       || IsPrivateKeypadKey(ksym)

Reply via email to