diff options
author | oga | 2008-04-16 13:35:37 +0000 |
---|---|---|
committer | oga | 2008-04-16 13:35:37 +0000 |
commit | 02211e5b89f2fd8670b150d7892f56d0f6dba351 (patch) | |
tree | 77e0463fa2987752c73fb0692e37685825dc2fd0 /group.c | |
parent | 026f72d2d3b6a4d7ec2de075c0497c219881c01a (diff) | |
download | cwm-02211e5b89f2fd8670b150d7892f56d0f6dba351.tar.gz |
Remove screen_infomsg(), nothing uses it.
ok okan.
Diffstat (limited to '')
-rw-r--r-- | group.c | 10 |
1 files changed, 1 insertions, 9 deletions
@@ -16,7 +16,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: group.c,v 1.9 2008/04/15 20:24:41 oga Exp $ + * $Id: group.c,v 1.10 2008/04/16 13:35:37 oga Exp $ */ #include "headers.h" @@ -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) ? \ |