1
0
mirror of https://github.com/lua/lua.git synced 2025-01-28 06:03:00 +08:00
This commit is contained in:
Roberto Ierusalimschy 2004-09-29 18:03:42 -03:00
parent 36541dec9b
commit 67391a35da

View File

@ -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 ';'