From fefb51c5925ca506fff374a59c7e4b396ad628c2 Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Fri, 30 Nov 2012 14:18:45 +0100 Subject: [PATCH] fteqcc like \[ and \] in strings --- lexer.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lexer.c b/lexer.c index e2cf803..a349e0e 100644 --- a/lexer.c +++ b/lexer.c @@ -820,6 +820,8 @@ static int GMQCC_WARN lex_finish_string(lex_file *lex, int quote) case '<': ch = 29; break; case '-': ch = 30; break; case '>': ch = 31; break; + case '[': ch = 16; break; + case ']': ch = 17; break; case '\n': ch = '\n'; break; default: -- 2.39.2