This website works better with JavaScript.
Home
Explore
Help
Sign In
Linux
/
dmenu
generated from
gmarx/git-template
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
fixed linking bug (thanks Jacob Nixdorf) & iscntrl corner case
master
Connor Lane Smith
14 years ago
parent
f0818217b3
commit
610a0a8d12
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
config.mk
+1
-1
dmenu.c
+ 1
- 1
config.mk
View File
@ -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
}
+ 1
- 1
dmenu.c
View File
@ -230,7 +230,7 @@ keypress(XKeyEvent *ev) {
}
switch
(
ksym
)
{
default
:
if
(
*
buf
)
if
(
!
iscntrl
(
*
buf
)
)
insert
(
buf
,
strlen
(
buf
)
)
;
break
;
case
XK_Delete
:
Write
Preview
Loading…
Cancel
Save