case insensitive patch
This commit is contained in:
parent
53af40c244
commit
ea2c802a61
6
dmenu.1
6
dmenu.1
@ -3,7 +3,7 @@
|
|||||||
dmenu \- dynamic menu
|
dmenu \- dynamic menu
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.B dmenu
|
.B dmenu
|
||||||
.RB [ \-bfiv ]
|
.RB [ \-bfsv ]
|
||||||
.RB [ \-l
|
.RB [ \-l
|
||||||
.IR lines ]
|
.IR lines ]
|
||||||
.RB [ \-h
|
.RB [ \-h
|
||||||
@ -49,8 +49,8 @@ dmenu appears centered on the screen.
|
|||||||
dmenu grabs the keyboard before reading stdin if not reading from a tty. This
|
dmenu grabs the keyboard before reading stdin if not reading from a tty. This
|
||||||
is faster, but will lock up X until stdin reaches end\-of\-file.
|
is faster, but will lock up X until stdin reaches end\-of\-file.
|
||||||
.TP
|
.TP
|
||||||
.B \-i
|
.B \-s
|
||||||
dmenu matches menu items case insensitively.
|
dmenu matches menu items case sensitively.
|
||||||
.TP
|
.TP
|
||||||
.BI \-l " lines"
|
.BI \-l " lines"
|
||||||
dmenu lists items vertically, with the given number of lines.
|
dmenu lists items vertically, with the given number of lines.
|
||||||
|
11
dmenu.c
11
dmenu.c
@ -63,8 +63,9 @@ static Colormap cmap;
|
|||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
static int (*fstrncmp)(const char *, const char *, size_t) = strncmp;
|
static char * cistrstr(const char *s, const char *sub);
|
||||||
static char *(*fstrstr)(const char *, const char *) = strstr;
|
static int (*fstrncmp)(const char *, const char *, size_t) = strncasecmp;
|
||||||
|
static char *(*fstrstr)(const char *, const char *) = cistrstr;
|
||||||
static void xinitvisual();
|
static void xinitvisual();
|
||||||
|
|
||||||
static unsigned int
|
static unsigned int
|
||||||
@ -766,9 +767,9 @@ main(int argc, char *argv[])
|
|||||||
fast = 1;
|
fast = 1;
|
||||||
else if (!strcmp(argv[i], "-c")) /* centers dmenu on screen */
|
else if (!strcmp(argv[i], "-c")) /* centers dmenu on screen */
|
||||||
centered = 1;
|
centered = 1;
|
||||||
else if (!strcmp(argv[i], "-i")) { /* case-insensitive item matching */
|
else if (!strcmp(argv[i], "-s")) { /* case-sensitive item matching */
|
||||||
fstrncmp = strncasecmp;
|
fstrncmp = strncmp;
|
||||||
fstrstr = cistrstr;
|
fstrstr = strstr;
|
||||||
} else if (i + 1 == argc)
|
} else if (i + 1 == argc)
|
||||||
usage();
|
usage();
|
||||||
/* these options take one argument */
|
/* these options take one argument */
|
||||||
|
53
patches/dmenu-caseinsensitive-5.0.diff
Normal file
53
patches/dmenu-caseinsensitive-5.0.diff
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
diff --git a/dmenu.1 b/dmenu.1
|
||||||
|
index 323f93c..3e3b31b 100644
|
||||||
|
--- a/dmenu.1
|
||||||
|
+++ b/dmenu.1
|
||||||
|
@@ -3,7 +3,7 @@
|
||||||
|
dmenu \- dynamic menu
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B dmenu
|
||||||
|
-.RB [ \-bfiv ]
|
||||||
|
+.RB [ \-bfsv ]
|
||||||
|
.RB [ \-l
|
||||||
|
.IR lines ]
|
||||||
|
.RB [ \-m
|
||||||
|
@@ -44,8 +44,8 @@ dmenu appears at the bottom of the screen.
|
||||||
|
dmenu grabs the keyboard before reading stdin if not reading from a tty. This
|
||||||
|
is faster, but will lock up X until stdin reaches end\-of\-file.
|
||||||
|
.TP
|
||||||
|
-.B \-i
|
||||||
|
-dmenu matches menu items case insensitively.
|
||||||
|
+.B \-s
|
||||||
|
+dmenu matches menu items case sensitively.
|
||||||
|
.TP
|
||||||
|
.BI \-l " lines"
|
||||||
|
dmenu lists items vertically, with the given number of lines.
|
||||||
|
diff --git a/dmenu.c b/dmenu.c
|
||||||
|
index 65f25ce..855df59 100644
|
||||||
|
--- a/dmenu.c
|
||||||
|
+++ b/dmenu.c
|
||||||
|
@@ -55,8 +55,9 @@ static Clr *scheme[SchemeLast];
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
|
-static int (*fstrncmp)(const char *, const char *, size_t) = strncmp;
|
||||||
|
-static char *(*fstrstr)(const char *, const char *) = strstr;
|
||||||
|
+static char * cistrstr(const char *s, const char *sub);
|
||||||
|
+static int (*fstrncmp)(const char *, const char *, size_t) = strncasecmp;
|
||||||
|
+static char *(*fstrstr)(const char *, const char *) = cistrstr;
|
||||||
|
|
||||||
|
static void
|
||||||
|
appenditem(struct item *item, struct item **list, struct item **last)
|
||||||
|
@@ -709,9 +710,9 @@ main(int argc, char *argv[])
|
||||||
|
topbar = 0;
|
||||||
|
else if (!strcmp(argv[i], "-f")) /* grabs keyboard before reading stdin */
|
||||||
|
fast = 1;
|
||||||
|
- else if (!strcmp(argv[i], "-i")) { /* case-insensitive item matching */
|
||||||
|
- fstrncmp = strncasecmp;
|
||||||
|
- fstrstr = cistrstr;
|
||||||
|
+ else if (!strcmp(argv[i], "-s")) { /* case-sensitive item matching */
|
||||||
|
+ fstrncmp = strncmp;
|
||||||
|
+ fstrstr = strstr;
|
||||||
|
} else if (i + 1 == argc)
|
||||||
|
usage();
|
||||||
|
/* these options take one argument */
|
Loading…
Reference in New Issue
Block a user