Corrections in comments and manual. Added note in the manual about
local variables in the REPL.
This commit is contained in:
Roberto Ierusalimschy
2024-05-08 17:50:10 -03:00
parent 9d985db7bb
commit 262dc5729a
9 changed files with 36 additions and 21 deletions

View File

@@ -259,7 +259,7 @@ typedef struct global_State {
l_obj totalobjs; /* total number of objects allocated + GCdebt */
l_obj GCdebt; /* objects counted but not yet allocated */
l_obj marked; /* number of objects marked in a GC cycle */
l_obj GCmajorminor; /* auxiliar counter to control major-minor shifts */
l_obj GCmajorminor; /* auxiliary counter to control major-minor shifts */
stringtable strt; /* hash table for strings */
TValue l_registry;
TValue nilvalue; /* a nil value */