From a4461e04d35a7fec0daef97f1af88db786148f8d Mon Sep 17 00:00:00 2001 From: jsorg71 Date: Mon, 7 Sep 2009 18:54:03 +0000 Subject: [PATCH] allow ';' for comment too --- common/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/file.c b/common/file.c index c5e7efd3..1d347750 100644 --- a/common/file.c +++ b/common/file.c @@ -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; }