fixed -m bug (thanks Rob)
Connor Lane Smith cls@lubutu.com
Wed, 11 May 2011 12:25:50 +0100
M
draw.c
→
draw.c
@@ -7,9 +7,9 @@ #include <string.h>
#include <X11/Xlib.h> #include "draw.h" -#define MAX(a, b) ((a) > (b) ? (a) : (b)) -#define MIN(a, b) ((a) < (b) ? (a) : (b)) -#define DEFFONT "fixed" +#define MAX(a, b) ((a) > (b) ? (a) : (b)) +#define MIN(a, b) ((a) < (b) ? (a) : (b)) +#define DEFFONT "fixed" static Bool loadfont(DC *dc, const char *fontstr);