# HG changeset patch # User Anselm R.Garbe # Date 1155278082 -7200 # Node ID a9392d33865a3447d6966cccf65080cda4364a4a # Parent 5d7b7ff7a28935c730b750c9961170533863acc0 removed the if(clients) check from popping code diff -r 5d7b7ff7a289 -r a9392d33865a client.c --- a/client.c Thu Aug 10 18:44:19 2006 +0200 +++ b/client.c Fri Aug 11 08:34:42 2006 +0200 @@ -477,8 +477,7 @@ if(sel->next) sel->next->prev = sel->prev; sel->prev = NULL; - if(clients) - clients->prev = sel; + clients->prev = sel; sel->next = clients; clients = sel; arrange(NULL);