Noone's expecting the coding style inquisition. - thingmenu - A simple graphical menu launcher for X11.
 (HTM) git clone git://bitreich.org/thingmenu
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Tags
 (DIR) LICENSE
       ---
 (DIR) commit b8917e420aa03fdf8b431e76b560d89a3ca5e095
 (DIR) parent ce149fb5b5c4223f0a724911be59bfe55f2ddb7b
 (HTM) Author: Christoph Lohmann <20h@r-36.net>
       Date:   Sun,  9 Oct 2011 18:21:37 +0200
       
       Noone's expecting the coding style inquisition.
       
       Diffstat:
         M thingmenu.c                         |      12 ++++++------
       
       1 file changed, 6 insertions(+), 6 deletions(-)
       ---
 (DIR) diff --git a/thingmenu.c b/thingmenu.c
       @@ -574,17 +574,17 @@ main(int argc, char *argv[])
                                if (i >= argc - 1)
                                        break;
                                bitm = XParseGeometry(argv[i+1], &xr, &yr, &wr, &hr);
       -                        if(bitm & XValue)
       +                        if (bitm & XValue)
                                        wx = xr;
       -                        if(bitm & YValue)
       +                        if (bitm & YValue)
                                        wy = yr;
       -                        if(bitm & WidthValue)
       +                        if (bitm & WidthValue)
                                        ww = (int)wr;
       -                        if(bitm & HeightValue)
       +                        if (bitm & HeightValue)
                                        wh = (int)hr;
       -                        if(bitm & XNegative && wx == 0)
       +                        if (bitm & XNegative && wx == 0)
                                        wx = -1;
       -                        if(bitm & YNegative && wy == 0)
       +                        if (bitm & YNegative && wy == 0)
                                        wy = -1;
                                i++;
                                break;