aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds-kbdc/compile-layout.c
diff options
context:
space:
mode:
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 dc4fa75..f8202a6 100644
--- a/src/mds-kbdc/compile-layout.c
+++ b/src/mds-kbdc/compile-layout.c
@@ -524,7 +524,7 @@ static size_t check_function_calls_in_literal_(const mds_kbdc_tree_t* restrict t
if (escape)
{
escape = 0;
- if (((c == '_') || R('a', 'z') || R('A', 'Z')) &&(c != 'u'))
+ if (((c == '_') || R('a', 'z') || R('A', 'Z')) && (c != 'u'))
/* \u*() is disallowed because \u* is used for hexadecimal representation. */
if (check_function_call(tree, raw - 2, lineoff + (size_t)(raw - 2 - raw_), &raw, rc), *rc < 0)
break;