commit 93fc6f4cc1cb03c8fece467bc2d502d6a3988aaa
parent 72029737b5a9719f3b34f28370c57718a594108d
Author: Anselm R. Garbe <garbeam@wmii.de>
Date: Fri, 10 Mar 2006 18:39:25 +0100
fixed bug reported by ality
Diffstat:
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/cmd/wm/rule.c b/cmd/wm/rule.c
@@ -111,9 +111,13 @@ void
match_tags(Client *c)
{
unsigned int n;
- Rule *rules = parse(def.rules, &n);
+ Rule *rules;
char *tags;
+ if(!def.rules)
+ return;
+
+ rules = parse(def.rules, &n);
c->tags[0] = 0;
tags = match(rules, n, c->name);
fprintf(stderr, "match_tags tags=%s c->name=%s\n", tags, c->name);
diff --git a/config.mk b/config.mk
@@ -8,7 +8,7 @@ MANPREFIX = ${PREFIX}/share/man
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
-VERSION = 3-current
+VERSION = 20060310
# includes and libs
LIBS = -L${PREFIX}/lib -L/usr/lib -lc -lm -L${X11LIB} -lX11 -lXpm