summaryrefslogtreecommitdiffstats
path: root/genkeymap/genkeymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'genkeymap/genkeymap.c')
-rw-r--r--genkeymap/genkeymap.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/genkeymap/genkeymap.c b/genkeymap/genkeymap.c
index 25383f59..0d0a9a44 100644
--- a/genkeymap/genkeymap.c
+++ b/genkeymap/genkeymap.c
@@ -43,7 +43,6 @@ int main(int argc, char **argv)
{
const char* programname;
char text[256];
- char* ksname = NULL;
char* displayname = NULL;
char* outfname;
char* sections[5] = {"noshift", "shift", "altgr", "capslock", "shiftcapslock"};
@@ -96,14 +95,7 @@ int main(int argc, char **argv)
{
e.keycode = i;
nbytes = XLookupString(&e, text, 255, &ks, NULL);
- if (ks == NoSymbol)
- {
- ksname = "NoSymbol";
- }
- else if (!(ksname = XKeysymToString(ks)))
- {
- ksname = "(no name)";
- }
+ text[nbytes] = 0;
char_count = mbstowcs(wtext, text, 255);
unicode = 0;
if (char_count == 1)