diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-05-08 17:50:10 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-05-08 17:50:10 -0300 |
commit | 262dc5729a28b2bad0b6413d4eab2290d14395cf (patch) | |
tree | c92cbf6c6d5d88bc352dd71f7f27be4dd44cf16f /lstate.h | |
parent | 9d985db7bb09c92b5b3fa660fffe5907d01e6a02 (diff) | |
download | lua-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ |