aboutsummaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-09-29 18:03:42 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-09-29 18:03:42 -0300
commit67391a35daddf781ad2f74aa14e91fae760b2b1c (patch)
tree0bd7ee35eefe8a8ac41a9b0d70d5203d08842945 /luaconf.h
parent36541dec9b22ecf1f85be3e64532a325ecb6f1a0 (diff)
downloadlua-67391a35daddf781ad2f74aa14e91fae760b2b1c.tar.gz
lua-67391a35daddf781ad2f74aa14e91fae760b2b1c.tar.bz2
lua-67391a35daddf781ad2f74aa14e91fae760b2b1c.zip
details
Diffstat (limited to 'luaconf.h')
-rw-r--r--luaconf.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/luaconf.h b/luaconf.h
index 47e15b3f..48104e2d 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.11 2004/08/30 18:35:14 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.12 2004/09/10 17:30:46 roberto Exp roberto $
3** Configuration file for Lua 3** Configuration file for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -160,7 +160,7 @@
160 160
161 161
162/* maximum number of upvalues per function */ 162/* maximum number of upvalues per function */
163#define MAXUPVALUES 32 /* <MAXSTACK */ 163#define MAXUPVALUES 60 /* <MAXSTACK */
164 164
165 165
166/* maximum size of expressions for optimizing `while' code */ 166/* maximum size of expressions for optimizing `while' code */
@@ -275,6 +275,9 @@
275/* environment variable that holds the search path for packages */ 275/* environment variable that holds the search path for packages */
276#define LUA_PATH "LUA_PATH" 276#define LUA_PATH "LUA_PATH"
277 277
278/* directory separator (for submodules) */
279#define LUA_DIRSEP "/"
280
278/* separator of templates in a path */ 281/* separator of templates in a path */
279#define LUA_PATH_SEP ';' 282#define LUA_PATH_SEP ';'
280 283