aboutsummaryrefslogtreecommitdiff
path: root/lparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'lparser.h')
-rw-r--r--lparser.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/lparser.h b/lparser.h
index 524df6ea..b08008ce 100644
--- a/lparser.h
+++ b/lparser.h
@@ -105,6 +105,9 @@ typedef struct expdesc {
105/* variables that live in registers */ 105/* variables that live in registers */
106#define varinreg(v) ((v)->vd.kind <= RDKTOCLOSE) 106#define varinreg(v) ((v)->vd.kind <= RDKTOCLOSE)
107 107
108/* test for global variables */
109#define varglobal(v) ((v)->vd.kind >= GDKREG)
110
108 111
109/* description of an active variable */ 112/* description of an active variable */
110typedef union Vardesc { 113typedef union Vardesc {