From bad98e94caf37db71f8114bdb8562a7caa4fb256 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Mon, 16 Mar 2020 02:09:59 -0700 Subject: pp: Add support for macro definition and expansion The token pasting operator `##` still needs to be implemented. --- scan.c | 1 + 1 file changed, 1 insertion(+) (limited to 'scan.c') diff --git a/scan.c b/scan.c index 557b595..c9eb5ea 100644 --- a/scan.c +++ b/scan.c @@ -472,4 +472,5 @@ scan(struct token *t) t->lit = NULL; } t->space = scanner->sawspace; + t->hide = false; } -- cgit v1.2.3