Sorry I'm late but:

Daniel Stone <dan...@fooishbar.org> (05/05/2011):
> Replace:
>     for (stuff; things; etc) {
>         if (misc || other) {
>             [...]
>         }
>     }
> with:
>     for (stuff; things; etc) {
>         if (!misc && !other)
>             continue;
>         [...]
>     }

that says nothing about that:

> -            if ((tmpd == dev) || (!IsMaster(tmpd) && GetMaster(tmpd, 
> MASTER_KEYBOARD) == dev)) {
> +            if (tmpd != dev && GetMaster(tmpd, MASTER_KEYBOARD) != dev)

You're losing one part here; was that on purpose?

Mraw,
KiBi.

Attachment: signature.asc
Description: Digital signature

_______________________________________________
xorg-devel@lists.x.org: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel

Reply via email to