summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/lexer.c4
-rw-r--r--core/parser.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/core/lexer.c b/core/lexer.c
index 9705eb7..e627ba9 100644
--- a/core/lexer.c
+++ b/core/lexer.c
@@ -300,6 +300,10 @@ lexer_nom(struct cescal_state *state, struct token *res)
res->type = TT_COMMA;
res->c = c;
return 0;
+ case ':':
+ res->type = TT_COLON;
+ res->c = c;
+ return 0;
case '#':
if ((c = lexer_consume_single(state, true)) == '\0') {
return -1;
diff --git a/core/parser.c b/core/parser.c
index 5e86283..6720d84 100644
--- a/core/parser.c
+++ b/core/parser.c
@@ -37,6 +37,7 @@ static const char *toktab[] = {
[TT_LPAREN] = qtok("("),
[TT_RPAREN] = qtok(")"),
[TT_COMMA] = qtok(","),
+ [TT_COLON] = qtok(":"),
[TT_ARROW] = qtok("->"),
[TT_DEFINE] = qtok("#define"),
[TT_IFNDEF] = qtok("#ifndef"),