aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-05-08 17:50:10 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-05-08 17:50:10 -0300
commit262dc5729a28b2bad0b6413d4eab2290d14395cf (patch)
treec92cbf6c6d5d88bc352dd71f7f27be4dd44cf16f /lstate.h
parent9d985db7bb09c92b5b3fa660fffe5907d01e6a02 (diff)
downloadlua-262dc5729a28b2bad0b6413d4eab2290d14395cf.tar.gz
lua-262dc5729a28b2bad0b6413d4eab2290d14395cf.tar.bz2
lua-262dc5729a28b2bad0b6413d4eab2290d14395cf.zip
Details
Corrections in comments and manual. Added note in the manual about local variables in the REPL.
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lstate.h b/lstate.h
index 7f567453..2ff0d02b 100644
--- a/lstate.h
+++ b/lstate.h
@@ -259,7 +259,7 @@ typedef struct global_State {
259 l_obj totalobjs; /* total number of objects allocated + GCdebt */ 259 l_obj totalobjs; /* total number of objects allocated + GCdebt */
260 l_obj GCdebt; /* objects counted but not yet allocated */ 260 l_obj GCdebt; /* objects counted but not yet allocated */
261 l_obj marked; /* number of objects marked in a GC cycle */ 261 l_obj marked; /* number of objects marked in a GC cycle */
262 l_obj GCmajorminor; /* auxiliar counter to control major-minor shifts */ 262 l_obj GCmajorminor; /* auxiliary counter to control major-minor shifts */
263 stringtable strt; /* hash table for strings */ 263 stringtable strt; /* hash table for strings */
264 TValue l_registry; 264 TValue l_registry;
265 TValue nilvalue; /* a nil value */ 265 TValue nilvalue; /* a nil value */