diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/mds-kbdc/compile-layout.c | 2 | 
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));  | 
