summary refs log tree commit diff
path: root/search.c
diff options
context:
space:
mode:
authorokan <okan>2010-09-25 20:01:27 +0000
committerokan <okan>2010-09-25 20:01:27 +0000
commit917bce4b8da39e68ed2200f1e2eab09582e7fa34 (patch)
tree73a70221109ca80bfe2072465086c50038ba62c4 /search.c
parent2440efad06f6c6d13d5d46c498d29ccee4d58c42 (diff)
downloadcwm-917bce4b8da39e68ed2200f1e2eab09582e7fa34.tar.gz
cwm-917bce4b8da39e68ed2200f1e2eab09582e7fa34.tar.xz
cwm-917bce4b8da39e68ed2200f1e2eab09582e7fa34.zip
spacing nits
Diffstat (limited to 'search.c')
-rw-r--r--search.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/search.c b/search.c
index 4383f5d..8cd6523 100644
--- a/search.c
+++ b/search.c
@@ -78,11 +78,7 @@ search_match_client(struct menu_q *menuq, struct menu_q *resultq, char *search)
 				}
 		}
 
-		/*
-		 * See if there is a match on the window class
-		 * name.
-		 */
-
+		/* Then if there is a match on the window class name. */
 		if (tier < 0 && strsubmatch(search, cc->app_class, 0)) {
 			cc->matchname = cc->app_class;
 			tier = 3;
@@ -99,9 +95,7 @@ search_match_client(struct menu_q *menuq, struct menu_q *resultq, char *search)
 		if (cc == client_current() && tier < ntiers - 1)
 			tier++;
 
-		/*
-		 * Clients that are hidden get ranked one up.
-		 */
+		/* Clients that are hidden get ranked one up. */
 		if (cc->flags & CLIENT_HIDDEN && tier > 0)
 			tier--;
 
@@ -114,7 +108,6 @@ search_match_client(struct menu_q *menuq, struct menu_q *resultq, char *search)
 		 * Always make your current tierp the newly inserted
 		 * entry.
 		 */
-
 		for (t = tier; t >= 0 && ((before = tierp[t]) == NULL); t--)
 			;