diff options
author | justsaumit <justsaumit@draconyan.xyz> | 2022-03-02 09:51:54 +0530 |
---|---|---|
committer | justsaumit <justsaumit@draconyan.xyz> | 2022-03-02 09:51:54 +0530 |
commit | b3932693ee424e6c2923ab7286b02ef175265467 (patch) | |
tree | fd43506ec9d90ef307c44f59ab1abe79f9f05b0f /dmenu.c.rej | |
parent | 2781cf2a74772f02a7dad181a251d839c6d21385 (diff) |
instant patch (-n)
Diffstat (limited to 'dmenu.c.rej')
-rw-r--r-- | dmenu.c.rej | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/dmenu.c.rej b/dmenu.c.rej deleted file mode 100644 index 67eb339..0000000 --- a/dmenu.c.rej +++ /dev/null @@ -1,22 +0,0 @@ ---- dmenu.c -+++ dmenu.c -@@ -643,7 +650,7 @@ setup(void) - static void - usage(void) - { -- fputs("usage: dmenu [-bfiv] [-l lines] [-p prompt] [-fn font] [-m monitor]\n" -+ fputs("usage: dmenu [-bfinv] [-l lines] [-p prompt] [-fn font] [-m monitor]\n" - " [-nb color] [-nf color] [-sb color] [-sf color] [-w windowid]\n", stderr); - exit(1); - } -@@ -666,7 +673,9 @@ main(int argc, char *argv[]) - else if (!strcmp(argv[i], "-i")) { /* case-insensitive item matching */ - fstrncmp = strncasecmp; - fstrstr = cistrstr; -- } else if (i + 1 == argc) -+ } else if (!strcmp(argv[i], "-n")) /* instant select only match */ -+ instant = 1; -+ else if (i + 1 == argc) - usage(); - /* these options take one argument */ - else if (!strcmp(argv[i], "-l")) /* number of lines in vertical list */ |