From 297eab9e5e2c9cc4f41201b68821593a5cf9a725 Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Fri, 9 Jul 2021 14:05:01 -0400 Subject: [PATCH] reset framevalue on includes like fteqcc --- lexer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lexer.cpp b/lexer.cpp index d63ff8c..959b1db 100644 --- a/lexer.cpp +++ b/lexer.cpp @@ -392,6 +392,7 @@ static bool lex_try_pragma(lex_file *lex) goto unroll; } else if (!strcmp(command, "file")) { + lex->framevalue = 0; lex->name = util_strdup(param); vec_push(lex_filenames, lex->name); } -- 2.39.2