commit 84e4a54ad1409b64ed6c59b1353038a41ef4ff52
parent 3cb5c834c0f68c3e2975e2d596e92a85c12a7f66
Author: Anselm R. Garbe <garbeam@wmii.de>
Date: Tue, 9 May 2006 17:30:41 +0200
small fix in select_area
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/cmd/wm/area.c b/cmd/wm/area.c
@@ -117,7 +117,7 @@ select_area(Area *a, char *arg)
else
i--;
} else if(!strncmp(arg, "next", 5)) {
- if(i + 1 < v->area.size)
+ if(i > 0 && (i + 1 < v->area.size))
i++;
else
return;
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 = 20060509-rc3-agnita
# includes and libs
LIBS = -L${PREFIX}/lib -L/usr/lib -lc -L${X11LIB} -lX11