Am 27.01.2011 08:54, schrieb Erkki Seppälä:
> Removed superfluous comparison.
> 
> Signed-off-by: Erkki Seppälä <[email protected]>
> ---
>  src/xkb/XKBMisc.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/src/xkb/XKBMisc.c b/src/xkb/XKBMisc.c
> index fc5ae5f..4aa1f73 100644
> --- a/src/xkb/XKBMisc.c
> +++ b/src/xkb/XKBMisc.c
> @@ -619,7 +619,7 @@ KeySym *  syms;
>       XkbApplyCompatMapToKey(xkb,key,changes);
>      }
>  
> -    if ((xkb->server->vmods!=NULL)&&(xkb->map->modmap!=NULL)&&(changes)&&
> +    if ((xkb->map->modmap!=NULL)&&(changes)&&
>       (changes->map.changed&(XkbVirtualModMapMask|XkbModifierMapMask))) {
>       unsigned char           newVMods[XkbNumVirtualMods];
>       register  unsigned      bit,i;


I am not an expert on X11 coding style: but could someone detangle the if() 
here ?
something like:


if ( xkb->map->modmap!=NULL && changes )
        if ( (XkbVirtualModMapMask|XkbModifierMapMask) & changes->map.changed )

re,
 wh
_______________________________________________
[email protected]: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel

Reply via email to