allow ';' for comment too

This commit is contained in:
jsorg71 2009-09-07 18:54:03 +00:00
parent dc26b98025
commit a4461e04d3

View File

@ -105,7 +105,7 @@ file_read_line(struct stream* s, char* text)
in_uint8(s, c);
while (c != 10 && c != 13)
{
if (c == '#' || c == '!')
if (c == '#' || c == '!' || c == ';')
{
skip_to_end = 1;
}