about summary refs log tree commit diff stats
path: root/view.c
diff options
context:
space:
mode:
Diffstat (limited to 'view.c')
-rw-r--r--view.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/view.c b/view.c
index 14cfc1d..baa2ac6 100644
--- a/view.c
+++ b/view.c
@@ -234,7 +234,8 @@ view(Arg *arg) {
 
 	for(i = 0; i < ntags; i++)
 		seltag[i] = (arg->i == -1) ? True : False;
-	seltag[arg->i] = True;
+	if(arg->i >= 0 && arg->i < ntags)
+		seltag[arg->i] = True;
 	arrange();
 }