allow ';' for comment too

ulab-original
jsorg71 15 years ago
parent dc26b98025
commit a4461e04d3

@ -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;
}

Loading…
Cancel
Save