From 231abb818ae3bdb8ea01a7df99d0895f38327748 Mon Sep 17 00:00:00 2001 From: okan Date: Mon, 1 Sep 2014 18:17:32 +0000 Subject: add explicit paran and drop some empty lines bringing like functions closer --- kbfunc.c | 1 - mousefunc.c | 7 ++----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/kbfunc.c b/kbfunc.c index 241c0b4..4cc0dc1 100644 --- a/kbfunc.c +++ b/kbfunc.c @@ -159,7 +159,6 @@ kbfunc_client_search(struct client_ctx *cc, union arg *arg) cc = (struct client_ctx *)mi->ctx; if (cc->flags & CLIENT_HIDDEN) client_unhide(cc); - if (old_cc) client_ptrsave(old_cc); client_ptrwarp(cc); diff --git a/mousefunc.c b/mousefunc.c index ef96cb3..2537059 100644 --- a/mousefunc.c +++ b/mousefunc.c @@ -194,7 +194,6 @@ mousefunc_menu_group(struct client_ctx *cc, union arg *arg) group_hidden_state(gc) ? "%d: [%s]" : "%d: %s", gc->num, sc->group_names[gc->num]); } - if (TAILQ_EMPTY(&menuq)) return; @@ -220,16 +219,15 @@ mousefunc_menu_unhide(struct client_ctx *cc, union arg *arg) old_cc = client_current(); TAILQ_INIT(&menuq); - TAILQ_FOREACH(cc, &Clientq, entry) + TAILQ_FOREACH(cc, &Clientq, entry) { if (cc->flags & CLIENT_HIDDEN) { wname = (cc->label) ? cc->label : cc->name; if (wname == NULL) continue; - menuq_add(&menuq, cc, "(%d) %s", cc->group ? cc->group->num : 0, wname); } - + } if (TAILQ_EMPTY(&menuq)) return; @@ -257,7 +255,6 @@ mousefunc_menu_cmd(struct client_ctx *cc, union arg *arg) TAILQ_INIT(&menuq); TAILQ_FOREACH(cmd, &Conf.cmdq, entry) menuq_add(&menuq, cmd, "%s", cmd->name); - if (TAILQ_EMPTY(&menuq)) return; -- cgit 1.4.1