commit 67391a35daddf781ad2f74aa14e91fae760b2b1c
parent 36541dec9b22ecf1f85be3e64532a325ecb6f1a0
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Wed, 29 Sep 2004 18:03:20 -0300
details
Diffstat:
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/luaconf.h b/luaconf.h
@@ -1,5 +1,5 @@
/*
-** $Id: luaconf.h,v 1.11 2004/08/30 18:35:14 roberto Exp roberto $
+** $Id: luaconf.h,v 1.12 2004/09/10 17:30:46 roberto Exp roberto $
** Configuration file for Lua
** See Copyright Notice in lua.h
*/
@@ -160,7 +160,7 @@
/* maximum number of upvalues per function */
-#define MAXUPVALUES 32 /* <MAXSTACK */
+#define MAXUPVALUES 60 /* <MAXSTACK */
/* maximum size of expressions for optimizing `while' code */
@@ -275,6 +275,9 @@
/* environment variable that holds the search path for packages */
#define LUA_PATH "LUA_PATH"
+/* directory separator (for submodules) */
+#define LUA_DIRSEP "/"
+
/* separator of templates in a path */
#define LUA_PATH_SEP ';'