pinosaur
/
dmenu.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f081821
)
fixed linking bug (thanks Jacob Nixdorf) & iscntrl corner case
author
Connor Lane Smith
<cls@lubutu.com>
Mon, 13 Sep 2010 13:22:02 +0000
(14:22 +0100)
committer
Connor Lane Smith
<cls@lubutu.com>
Mon, 13 Sep 2010 13:22:02 +0000
(14:22 +0100)
config.mk
patch
|
blob
|
history
dmenu.c
patch
|
blob
|
history
diff --git
a/config.mk
b/config.mk
index
03212d5
..
6e1b95f
100644
(file)
--- a/
config.mk
+++ b/
config.mk
@@
-16,7
+16,7
@@
XINERAMAFLAGS = -DXINERAMA
# includes and libs
INCS = -I${X11INC}
-LIBS = -L${X11LIB} -ld
raw
-lX11 ${XINERAMALIBS}
+LIBS = -L${X11LIB} -ld
c
-lX11 ${XINERAMALIBS}
# flags
CPPFLAGS = -D_BSD_SOURCE -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
diff --git
a/dmenu.c
b/dmenu.c
index
0d01cbc
..
908f548
100644
(file)
--- a/
dmenu.c
+++ b/
dmenu.c
@@
-230,7
+230,7
@@
keypress(XKeyEvent *ev) {
}
switch(ksym) {
default:
- if(
*buf
)
+ if(
!iscntrl(*buf)
)
insert(buf, strlen(buf));
break;
case XK_Delete: