renamed MAXLEN into MAXTAGLEN (backward compliance)
authoranselm@anselm1
Tue, 04 Mar 2008 21:41:36 +0000
changeset 1118 e8efb587e751
parent 1117 fac7660be3de
child 1119 4a078ab3e792
renamed MAXLEN into MAXTAGLEN (backward compliance)
config.def.h
dwm.c
--- a/config.def.h	Tue Mar 04 21:40:49 2008 +0000
+++ b/config.def.h	Tue Mar 04 21:41:36 2008 +0000
@@ -12,7 +12,7 @@
 #define SELFGCOLOR		"#ffffff"
 
 /* tagging */
-const char tags[][MAXLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
+const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
 
 Rule rules[] = {
 	/* class:instance:title substr	tags ref	isfloating */
--- a/dwm.c	Tue Mar 04 21:40:49 2008 +0000
+++ b/dwm.c	Tue Mar 04 21:41:36 2008 +0000
@@ -48,7 +48,7 @@
 #define BUTTONMASK		(ButtonPressMask|ButtonReleaseMask)
 #define CLEANMASK(mask)		(mask & ~(numlockmask|LockMask))
 #define LENGTH(x)		(sizeof x / sizeof x[0])
-#define MAXLEN			16
+#define MAXTAGLEN		16
 #define MOUSEMASK		(BUTTONMASK|PointerMotionMask)