renamed MAXLEN into MAXTAGLEN (backward compliance) 295ad210
anselm@anselm1 · 2008-03-04 21:41 2 file(s) · +2 −2
config.def.h +1 −1
12 12
#define SELFGCOLOR		"#ffffff"
13 13
14 14
/* tagging */
15 -
const char tags[][MAXLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
15 +
const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
16 16
17 17
Rule rules[] = {
18 18
	/* class:instance:title substr	tags ref	isfloating */
dwm.c +1 −1
48 48
#define BUTTONMASK		(ButtonPressMask|ButtonReleaseMask)
49 49
#define CLEANMASK(mask)		(mask & ~(numlockmask|LockMask))
50 50
#define LENGTH(x)		(sizeof x / sizeof x[0])
51 -
#define MAXLEN			16
51 +
#define MAXTAGLEN		16
52 52
#define MOUSEMASK		(BUTTONMASK|PointerMotionMask)
53 53
54 54