aboutsummaryrefslogtreecommitdiff
path: root/ltests.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltests.c')
-rw-r--r--ltests.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ltests.c b/ltests.c
index 4d8a60f4..ead3d86e 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 1.166 2003/10/10 13:29:08 roberto Exp roberto $ 2** $Id: ltests.c,v 1.167 2003/10/20 12:25:23 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*/
@@ -241,6 +241,7 @@ static int get_limits (lua_State *L) {
241 setnameval(L, "MAXVARS", MAXVARS); 241 setnameval(L, "MAXVARS", MAXVARS);
242 setnameval(L, "MAXSTACK", MAXSTACK); 242 setnameval(L, "MAXSTACK", MAXSTACK);
243 setnameval(L, "MAXUPVALUES", MAXUPVALUES); 243 setnameval(L, "MAXUPVALUES", MAXUPVALUES);
244 setnameval(L, "NUM_OPCODES", NUM_OPCODES);
244 return 1; 245 return 1;
245} 246}
246 247