about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--client.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/client.c b/client.c
index 8004272..9710989 100644
--- a/client.c
+++ b/client.c
@@ -467,8 +467,7 @@ zoom(Arg *arg)
 	}
 
 	/* pop */
-	if(sel->prev)
-		sel->prev->next = sel->next;
+	sel->prev->next = sel->next;
 	if(sel->next)
 		sel->next->prev = sel->prev;
 	sel->prev = NULL;
<vc@akkartik.com> 2016-09-17 00:31:55 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2016-09-17 00:31:55 -0700 3379' href='/akkartik/mu/commit/channel.mu?h=hlt&id=08f4628e8b858120fe3547d8e5431d9abfe46bf8'>08f4628e ^
b96af395 ^
9458918f ^
ce87c19e ^
b96af395 ^
ce87c19e ^
b96af395 ^
b0bf5321 ^
ce87c19e ^
b96af395 ^
f192d655 ^
ee72abae ^
b96af395 ^
f192d655 ^
760f683f ^
b96af395 ^
77d5b5d6 ^
4a48bedc ^
b96af395 ^

9458918f ^
5b22547b ^
b96af395 ^
08f4628e ^
b96af395 ^

f192d655 ^
b96af395 ^
f192d655 ^
1ead3562 ^
77d5b5d6 ^
760f683f ^
b96af395 ^
192d59d3 ^

ce87c19e ^

b96af395 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45