diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-03-14 15:01:52 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-03-14 15:01:52 -0300 |
commit | 7ff21273d66541ac19ad817f90e8bcea5790f355 (patch) | |
tree | 9798243bbc84da7f0ea3aa7316ba42b06b947e63 /ltests.c | |
parent | 207dad86065acf4b6168bea1f13e88b7306a7440 (diff) | |
download | lua-7ff21273d66541ac19ad817f90e8bcea5790f355.tar.gz lua-7ff21273d66541ac19ad817f90e8bcea5790f355.tar.bz2 lua-7ff21273d66541ac19ad817f90e8bcea5790f355.zip |
implementation of `global' statement
Diffstat (limited to 'ltests.c')
-rw-r--r-- | ltests.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltests.c,v 1.110 2002/03/04 15:26:56 roberto Exp roberto $ | 2 | ** $Id: ltests.c,v 1.111 2002/03/04 21:29:41 roberto Exp roberto $ |
3 | ** Internal Module for Debugging of the Lua Implementation | 3 | ** Internal Module for Debugging of the Lua Implementation |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -219,7 +219,7 @@ static int get_limits (lua_State *L) { | |||
219 | lua_newtable(L); | 219 | lua_newtable(L); |
220 | setnameval(L, "BITS_INT", BITS_INT); | 220 | setnameval(L, "BITS_INT", BITS_INT); |
221 | setnameval(L, "LFPF", LFIELDS_PER_FLUSH); | 221 | setnameval(L, "LFPF", LFIELDS_PER_FLUSH); |
222 | setnameval(L, "MAXLOCALS", MAXLOCALS); | 222 | setnameval(L, "MAXVARS", MAXVARS); |
223 | setnameval(L, "MAXPARAMS", MAXPARAMS); | 223 | setnameval(L, "MAXPARAMS", MAXPARAMS); |
224 | setnameval(L, "MAXSTACK", MAXSTACK); | 224 | setnameval(L, "MAXSTACK", MAXSTACK); |
225 | setnameval(L, "MAXUPVALUES", MAXUPVALUES); | 225 | setnameval(L, "MAXUPVALUES", MAXUPVALUES); |