about summary refs log tree commit diff stats
path: root/tag.c
diff options
context:
space:
mode:
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);
-}