Commit f3471be5 authored by unknown's avatar unknown

Added handling for ; comment character as there was for #.

Bug#2080
parent 8cb66f50
......@@ -461,7 +461,7 @@ static char *remove_end_comment(char *ptr)
else if (quote == *ptr)
quote= 0;
}
if (!quote && *ptr == '#') /* We are not inside a comment */
if (!quote && (*ptr == '#' || *ptr == ';')) // We are not inside a comment
{
*ptr= 0;
return ptr;
......
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