indent quirks

Colin Harrison colin.harrison at virgin.net
Sun Mar 25 12:20:08 PDT 2012


Hi,

Your newly auto-indented xserver/os/access.c file has indent quirks on the
lines following the use of the MakeHost(h,l) macro but only when it is used
without a (superfluous) trailing semicolon.
Of cause this makes no difference to the binary, but it makes the code more
tricky to read for us mere mortals.

e.g.

....
    MakeHost(host, len)
        if (!host)
        return;
....

Should be
....
    MakeHost(host, len)
    if (!host)
        return;
....

Thanks,
Colin Harrison




More information about the xorg-devel mailing list