diff options
author | okan <okan> | 2016-12-06 21:54:10 +0000 |
---|---|---|
committer | okan <okan> | 2016-12-06 21:54:10 +0000 |
commit | a7f2ab7497f32c6ed740b610fc8120f934a4893a (patch) | |
tree | 7f71217651d8630e374e65740df3ff58803a57fa /kbfunc.c | |
parent | 89e4e7fb140a65726a9ce55179535b782e4b2d57 (diff) | |
download | cwm-a7f2ab7497f32c6ed740b610fc8120f934a4893a.tar.gz cwm-a7f2ab7497f32c6ed740b610fc8120f934a4893a.tar.xz cwm-a7f2ab7497f32c6ed740b610fc8120f934a4893a.zip |
Add search_print_text(), a default callback for mi->print in menu_filter(). While
here, normalize the remaining search_print_* argument paramters.
Diffstat (limited to 'kbfunc.c')
-rw-r--r-- | kbfunc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kbfunc.c b/kbfunc.c index 3292164..134a8e7 100644 --- a/kbfunc.c +++ b/kbfunc.c @@ -451,7 +451,7 @@ kbfunc_menu_exec(void *ctx, union arg *arg, enum xev xev) if ((mi = menu_filter(sc, &menuq, label, NULL, (CWM_MENU_DUMMY | CWM_MENU_FILE), - search_match_exec, NULL)) != NULL) { + search_match_exec, search_print_text)) != NULL) { if (mi->text[0] == '\0') goto out; switch (cmd) { @@ -526,7 +526,7 @@ kbfunc_menu_ssh(void *ctx, union arg *arg, enum xev xev) (void)fclose(fp); menu: if ((mi = menu_filter(sc, &menuq, "ssh", NULL, (CWM_MENU_DUMMY), - search_match_text, NULL)) != NULL) { + search_match_text, search_print_text)) != NULL) { if (mi->text[0] == '\0') goto out; l = snprintf(path, sizeof(path), "%s -T '[ssh] %s' -e ssh %s", @@ -552,7 +552,7 @@ kbfunc_menu_client_label(void *ctx, union arg *arg, enum xev xev) /* dummy is set, so this will always return */ mi = menu_filter(cc->sc, &menuq, "label", cc->label, (CWM_MENU_DUMMY), - search_match_text, NULL); + search_match_text, search_print_text); if (!mi->abort) { free(cc->label); |