summary refs log tree commit diff
path: root/group.c
diff options
context:
space:
mode:
authoroga <oga>2008-04-16 13:35:37 +0000
committeroga <oga>2008-04-16 13:35:37 +0000
commitf67772be650718b2e408a26ef08e1946a0abf1ab (patch)
tree72af4f9de32716d21f7cd517b815169deee85b2e /group.c
parent642afbdf8ca97818e849d126619cbc1bb7ff5871 (diff)
downloadcwm-f67772be650718b2e408a26ef08e1946a0abf1ab.tar.gz
cwm-f67772be650718b2e408a26ef08e1946a0abf1ab.tar.xz
cwm-f67772be650718b2e408a26ef08e1946a0abf1ab.zip
Remove screen_infomsg(), nothing uses it.
ok okan.
Diffstat (limited to 'group.c')
-rw-r--r--group.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/group.c b/group.c
index c00e505..59aec57 100644
--- a/group.c
+++ b/group.c
@@ -182,9 +182,6 @@ void
 group_hidetoggle(int idx)
 {
 	struct group_ctx *gc;
-#ifdef notyet
-	char buf[128];
-#endif
 
 	if (idx < 0 || idx >= CALMWM_NGROUPS)
 		err(1, "group_hidetoggle: index out of range (%d)", idx);
@@ -200,11 +197,6 @@ group_hidetoggle(int idx)
 		if (TAILQ_EMPTY(&gc->clients))
 			Group_active = gc;
 	}
-
-#ifdef notyet
-	snprintf(buf, sizeof(buf), "Group %d", idx + 1);
-	screen_infomsg(buf);
-#endif
 }
 
 #define GROUP_NEXT(gc, fwd) (fwd) ?					\