From ded2ad2d86f44424c6b6e12bf1b75836cfa9e502 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 16 May 2025 14:51:07 -0300 Subject: Slightly faster way to check for "global" --- llex.h | 1 + 1 file changed, 1 insertion(+) (limited to 'llex.h') diff --git a/llex.h b/llex.h index 0dba9d60..37016e8a 100644 --- a/llex.h +++ b/llex.h @@ -76,6 +76,7 @@ typedef struct LexState { TString *source; /* current source name */ TString *envn; /* environment variable name */ TString *brkn; /* "break" name (used as a label) */ + TString *glbn; /* "global" name (when not a reserved word) */ } LexState; -- cgit v1.2.3-55-g6feb