summaryrefslogtreecommitdiffstats
path: root/lua/lstate.h
diff options
context:
space:
mode:
authorEmil Renner Berthing <esmil@mailme.dk>2013-12-08 14:23:01 +0100
committerEmil Renner Berthing <esmil@mailme.dk>2013-12-08 15:24:07 +0100
commit0e339a54b074c7ef5f5cc461c03aac634e92b731 (patch)
tree7a6da472496b722af5a231d4cba2815056d600a4 /lua/lstate.h
parentc87c5a5619b1ece8ff4522dcfb688191610526f9 (diff)
downloadlem-0e339a54b074c7ef5f5cc461c03aac634e92b731.tar.gz
lem-0e339a54b074c7ef5f5cc461c03aac634e92b731.tar.xz
lem-0e339a54b074c7ef5f5cc461c03aac634e92b731.zip
Lua 5.2.3
Diffstat (limited to 'lua/lstate.h')
-rw-r--r--lua/lstate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/lstate.h b/lua/lstate.h
index 29f810b..daffd9a 100644
--- a/lua/lstate.h
+++ b/lua/lstate.h
@@ -1,5 +1,5 @@
/*
-** $Id: lstate.h,v 2.81 2012/06/08 15:14:04 roberto Exp $
+** $Id: lstate.h,v 2.82.1.1 2013/04/12 18:48:47 roberto Exp $
** Global State
** See Copyright Notice in lua.h
*/
@@ -137,7 +137,7 @@ typedef struct global_State {
UpVal uvhead; /* head of double-linked list of all open upvalues */
Mbuffer buff; /* temporary buffer for string concatenation */
int gcpause; /* size of pause between successive GCs */
- int gcmajorinc; /* how much to wait for a major GC (only in gen. mode) */
+ int gcmajorinc; /* pause between major collections (only in gen. mode) */
int gcstepmul; /* GC `granularity' */
lua_CFunction panic; /* to be called in unprotected errors */
struct lua_State *mainthread;