tusing limits.h - dmenu - Dmenu fork with xft fonts.
 (HTM) git clone git://r-36.net/dmenu
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit cbe5e88e4f6b1ae147ba9c8adf958b9bf584058a
 (DIR) parent 2fe3ccdf581105f4232d5714cee1ebe40870087f
 (HTM) Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Tue, 25 Mar 2008 10:18:17 +0000
       
       using limits.h
       Diffstat:
         dmenu.c                             |       5 +++--
       
       1 file changed, 3 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/dmenu.c b/dmenu.c
       t@@ -1,5 +1,6 @@
        /* See LICENSE file for copyright and license details. */
        #include <ctype.h>
       +#include <limits.h>
        #include <locale.h>
        #include <stdarg.h>
        #include <stdlib.h>
       t@@ -629,7 +630,7 @@ setup(int x, int y, int w) {
                mw = w ? w : DisplayWidth(dpy, screen);
                mh = dc.font.height + 2;
                if(y < 0) {
       -                if(y == ((~(unsigned int)0)/2)+1)
       +                if(y == INT_MIN)
                                y = DisplayHeight(dpy, screen) - mh;
                        else
                                y = (-1 * y) - mh;
       t@@ -709,7 +710,7 @@ main(int argc, char *argv[]) {
                        else if(!strcmp(argv[i], "-y")) {
                                if(++i < argc)
                                        if(!strcmp(argv[i], "-0"))
       -                                        y = ((~(unsigned int)0)/2)+1;
       +                                        y = INT_MIN;
                                        else
                                                y = atoi(argv[i]);
                        }