aboutsummaryrefslogtreecommitdiff
path: root/libtxt/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'libtxt/keymap.c')
-rw-r--r--libtxt/keymap.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libtxt/keymap.c b/libtxt/keymap.c
index 70af4fa..ae2ab02 100644
--- a/libtxt/keymap.c
+++ b/libtxt/keymap.c
@@ -54,6 +54,9 @@ struct keymap *keymap_parse(const char *path)
}
skip = 0;
+ if (ch == ' ' && !escaped)
+ ch = 0;
+
ch_index++;
if (escaped) {
switch (ch) {
@@ -69,6 +72,9 @@ struct keymap *keymap_parse(const char *path)
case '\\':
ch = '\\';
break;
+ case ' ':
+ ch = ' ';
+ break;
default:
print("Unknown escape!\n");
}