diff options
author | Anselm R.Garbe <arg@10ksloc.org> | 2006-08-14 08:38:26 +0200 |
---|---|---|
committer | Anselm R.Garbe <arg@10ksloc.org> | 2006-08-14 08:38:26 +0200 |
commit | 4cb78a170c6daa488a90dffb60224fcf2b76fbf0 (patch) | |
tree | 1405d6c24d3444b2bf039181ac169e092d285585 /tag.c | |
parent | 2c66b422e75109562e6ebfb6247300b916e1551a (diff) |
removed viewnext/viewprev
Diffstat (limited to 'tag.c')
-rw-r--r-- | tag.c | 20 |
1 files changed, 0 insertions, 20 deletions
@@ -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); -} |