aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--draw.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/draw.c b/draw.c
index 85c1279..28c658c 100644
--- a/draw.c
+++ b/draw.c
@@ -9,8 +9,6 @@
9 9
10#define MAX(a, b) ((a) > (b) ? (a) : (b)) 10#define MAX(a, b) ((a) > (b) ? (a) : (b))
11#define MIN(a, b) ((a) < (b) ? (a) : (b)) 11#define MIN(a, b) ((a) < (b) ? (a) : (b))
12#define FG(dc, col) ((col)[(dc)->invert ? ColBG : ColFG])
13#define BG(dc, col) ((col)[(dc)->invert ? ColFG : ColBG])
14#define DEFFONT "fixed" 12#define DEFFONT "fixed"
15 13
16static Bool loadfont(DC *dc, const char *fontstr); 14static Bool loadfont(DC *dc, const char *fontstr);