diff --git a/v2/engine/src/scan.c b/v2/engine/src/scan.c index 1e3ffca41..11c44c0e2 100644 --- a/v2/engine/src/scan.c +++ b/v2/engine/src/scan.c @@ -318,6 +318,8 @@ int yylex() c = '\n'; else if (c == 'r') c = '\r'; + else if (c == 't') + c = '\t'; *b++ = c; notkeyword = 1; }