Commit 79f26f7e authored by unknown's avatar unknown

bugfix for the bugfix for the bug #539

parent 54fe4c54
......@@ -1094,12 +1094,11 @@ 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 (!*ml_comment)
{
if (!*in_string && (inchar == '\'' || inchar == '"' || inchar == '`'))
*in_string= (char) inchar;
else if (!*ml_comment && !*in_string &&
(inchar == '\'' || inchar == '"' || inchar == '`'))
*in_string= (char) inchar;
if (!*ml_comment)
*out++= (char) inchar;
}
}
}
if (out != line || !buffer.is_empty())
......
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