aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/token.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/token.c b/bootstrap/token.c
index e44770e..f4c9e86 100644
--- a/bootstrap/token.c
+++ b/bootstrap/token.c
@@ -29,7 +29,7 @@ void tokenizer_init(FILE *file)
bool tokenizer_next_line(void)
{
int ignorelevel = 0;
- if (s && *s) {
+ if (s && *s && *s != '#') {
error("Expected end of line");
}
s = line;