Commit 45ec4ce8 authored by Pavel Tvrdik's avatar Pavel Tvrdik
Browse files

Lexer: Add a quotation mark back while parsing quotes

Thanks to Ondrej Zajicek for code.
parent 5e3cd0e5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -203,6 +203,7 @@ else: {
["][^"\n]*["] {
  yytext[yyleng-1] = 0;
  cf_lval.t = cfg_strdup(yytext+1);
  yytext[yyleng-1] = '"';
  return TEXT;
}