From 4a8841380e52cbad171997a1b70e45502f5e05e8 Mon Sep 17 00:00:00 2001 From: Alex Merry Date: Mon, 4 Feb 2013 17:24:43 +0000 Subject: Fix property list parsing QUOTEDSTRING (double quotes) is just not a thing in tikz. Also, allow keys to be {-quoted as well as values. --- tikzit/src/common/tikzlexer.lm | 6 ------ 1 file changed, 6 deletions(-) (limited to 'tikzit/src/common/tikzlexer.lm') diff --git a/tikzit/src/common/tikzlexer.lm b/tikzit/src/common/tikzlexer.lm index 26cddd9..f0b6546 100644 --- a/tikzit/src/common/tikzlexer.lm +++ b/tikzit/src/common/tikzlexer.lm @@ -85,12 +85,6 @@ at { tokenpos += yyleng; return AT; } } -\"[^\"]*\" /* " */ { - tokenpos += yyleng; - yylval.nsstr=[NSString stringWithUTF8String:yytext]; - return QUOTEDSTRING; -} - \{ { NSMutableString *buf = [NSMutableString string]; unsigned int brace_depth = 1; -- cgit v1.2.3