aboutsummaryrefslogtreecommitdiffstats
path: root/tag.c
diff options
context:
space:
mode:
authorAnselm R.Garbe <arg@10ksloc.org>2006-08-14 08:38:26 +0200
committerAnselm R.Garbe <arg@10ksloc.org>2006-08-14 08:38:26 +0200
commit4cb78a170c6daa488a90dffb60224fcf2b76fbf0 (patch)
tree1405d6c24d3444b2bf039181ac169e092d285585 /tag.c
parent2c66b422e75109562e6ebfb6247300b916e1551a (diff)
downloaddwm-4cb78a170c6daa488a90dffb60224fcf2b76fbf0.tar.gz
removed viewnext/viewprev
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/tag.c b/tag.c
index 9904dd1..d27d91a 100644
--- a/tag.c
+++ b/tag.c
@@ -263,23 +263,3 @@ toggleview(Arg *arg)
arrange(NULL);
drawall();
}
-
-void
-viewnext(Arg *arg)
-{
- unsigned int i;
-
- for(i = 0; !seltag[i]; i++);
- arg->i = (i < ntags-1) ? i+1 : 0;
- view(arg);
-}
-
-void
-viewprev(Arg *arg)
-{
- unsigned int i;
-
- for(i = 0; !seltag[i]; i++);
- arg->i = (i > 0) ? i-1 : ntags-1;
- view(arg);
-}