summaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-02-09 09:55:37 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-02-09 09:55:37 -0200
commitc8ff7de7f0be3abd4bb80682bda2bafc12503732 (patch)
tree6a10ca206f272deee43440835a8ff78d9b2c4046 /lstate.h
parent3bae8e047c0f7afd550d8ae5c0c5c2557a4c780e (diff)
downloadlua-github-c8ff7de7f0be3abd4bb80682bda2bafc12503732.tar.gz
field 'oldtop' renamed to 'extra', as it can be used for other
purposes
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstate.h b/lstate.h
index b9a96b72..a6ea5546 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
/*
-** $Id: lstate.h,v 2.51 2009/12/11 13:39:34 roberto Exp roberto $
+** $Id: lstate.h,v 2.52 2009/12/22 15:32:50 roberto Exp roberto $
** Global State
** See Copyright Notice in lua.h
*/
@@ -85,7 +85,7 @@ typedef struct CallInfo {
int ctx; /* context info. in case of yields */
lua_CFunction k; /* continuation in case of yields */
ptrdiff_t old_errfunc;
- ptrdiff_t oldtop;
+ ptrdiff_t extra;
lu_byte old_allowhook;
lu_byte status;
} c;