Commit e0618ae4 authored by unknown's avatar unknown

do not look for string characters "'` inside comments - bug#539

parent f3b4f760
......@@ -1010,7 +1010,7 @@ static bool add_line(String &buffer,char *line,char *in_string)
{ // Add found char to buffer
if (inchar == *in_string)
*in_string=0;
else if (!*in_string && (inchar == '\'' || inchar == '"' || inchar == '`'))
else if (!in_comment && !*in_string && (inchar == '\'' || inchar == '"' || inchar == '`'))
*in_string=(char) inchar;
*out++ = (char) inchar;
if (inchar == '*' && !*in_string)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment