Add dummy flag -i for compatibility

This commit is contained in:
Santiago Lo Coco 2022-01-11 18:15:41 -03:00
parent e8fd026038
commit 5e392842c0
1 changed files with 2 additions and 0 deletions

View File

@ -747,6 +747,8 @@ main(int argc, char *argv[])
fast = 1;
else if (!strcmp(argv[i], "-c")) /* centers dmenu on screen */
centered = 1;
else if (!strcmp(argv[i], "-i")) { /* case-insensitive item matching -- only for compatibility with scripts that uses this flag (in this build case-insensitive is the default) */
}
else if (!strcmp(argv[i], "-s")) { /* case-sensitive item matching */
fstrncmp = strncmp;
fstrstr = strstr;