finch/libgnt/gntwm.c

branch
release-2.x.y
changeset 33797
abc9e0edacc9
parent 32040
d4345b8d4763
child 33811
5ab172aeeff2
child 35561
c8bb4edd6325
--- a/finch/libgnt/gntwm.c	Tue Feb 26 18:59:58 2013 -0500
+++ b/finch/libgnt/gntwm.c	Tue Feb 26 20:39:20 2013 -0500
@@ -1252,7 +1252,11 @@
 static gboolean
 ignore_keys_end(GntBindable *bindable, GList *n)
 {
-	return ignore_keys ? !(ignore_keys = FALSE) : FALSE;
+	if (ignore_keys) {
+		ignore_keys = FALSE;
+		return TRUE;
+	}
+	return FALSE;
 }
 
 static gboolean

mercurial