diff options
author | Michael Forney <mforney@mforney.org> | 2020-03-16 02:09:59 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2020-03-17 15:22:51 -0700 |
commit | bad98e94caf37db71f8114bdb8562a7caa4fb256 (patch) | |
tree | e238ce199becccaf9f940685ba8cb27c2c74737d /scan.c | |
parent | 19b816b032dfc01a49f7f86ae7c411a0f15fd2bc (diff) |
pp: Add support for macro definition and expansion
The token pasting operator `##` still needs to be implemented.
Diffstat (limited to 'scan.c')
-rw-r--r-- | scan.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -472,4 +472,5 @@ scan(struct token *t) t->lit = NULL; } t->space = scanner->sawspace; + t->hide = false; } |