From 74ccc8cc01d365f30a502dd42825de19c05c3743 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Tue, 19 May 2020 19:59:26 -0700 Subject: fix: arguments now hold their state correctly throughout macro parsing --- sys/cmd/cc/cc.c | 1 + 1 file changed, 1 insertion(+) (limited to 'sys/cmd/cc/cc.c') diff --git a/sys/cmd/cc/cc.c b/sys/cmd/cc/cc.c index 74040eb..d7bb12c 100644 --- a/sys/cmd/cc/cc.c +++ b/sys/cmd/cc/cc.c @@ -249,6 +249,7 @@ init(void) memset(C.iostk, 0, sizeof(C.iostk)); C.lxr = (Lexer){ 0 }; + C.lxr.b = C.lxr.buf; } error -- cgit v1.2.1