From ab55673c354293afe25cfa68bb623c13c2bd909c Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Fri, 23 Nov 2012 21:35:14 +0100 Subject: [PATCH] Fix a very nasty bug in the lexer's handling of comments --- lexer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lexer.c b/lexer.c index 8f1bcb8..61fe11f 100644 --- a/lexer.c +++ b/lexer.c @@ -604,6 +604,7 @@ static int lex_skipwhite(lex_file *lex) } break; } + lex_ungetch(lex, ch); } if (lex->flags.preprocessing) { lex_tokench(lex, ' '); /* ch); */ -- 2.39.2