aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds-kbdc
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-12-11 06:43:28 +0100
committerMattias Andrée <maandree@operamail.com>2014-12-11 06:43:28 +0100
commit7e9f97fd9adfe22470308eee883ac64595e54e7e (patch)
treed8fcd27a536d1e9b70c61082a81fbced64646c55 /src/mds-kbdc
parentm (diff)
downloadmds-7e9f97fd9adfe22470308eee883ac64595e54e7e.tar.gz
mds-7e9f97fd9adfe22470308eee883ac64595e54e7e.tar.bz2
mds-7e9f97fd9adfe22470308eee883ac64595e54e7e.tar.xz
some small fixes
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--src/mds-kbdc/compile-layout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mds-kbdc/compile-layout.c b/src/mds-kbdc/compile-layout.c
index 477ba33..007f6ae 100644
--- a/src/mds-kbdc/compile-layout.c
+++ b/src/mds-kbdc/compile-layout.c
@@ -896,7 +896,7 @@ static char32_t* parse_unquoted_string(mds_kbdc_tree_t* restrict tree, const cha
if (R('0', '9')) buf = 10 * buf + (c & 15);
else if (c == '\\') CHAR_ERROR(tree, ERROR, "mixing numericals and escapes is not allowed");
else if (c == '"') CHAR_ERROR(tree, ERROR, "mixing numericals and quotes is not allowed");
- else CHAR_ERROR(tree, ERROR, "stray ‘%c’", c);
+ else CHAR_ERROR(tree, ERROR, "stray ‘%c’", c); /* XXX support multibyte */
done:
fail_if (xmalloc(rc, 2, char32_t));