This commit is contained in:
Roberto Ierusalimschy 2004-08-30 10:44:04 -03:00
parent 5dcd908add
commit 857253cdfc
1 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/*
** $Id: luaconf.h,v 1.8 2004/06/29 16:57:56 roberto Exp roberto $
** $Id: luaconf.h,v 1.9 2004/07/09 14:29:29 roberto Exp roberto $
** Configuration file for Lua
** See Copyright Notice in lua.h
*/
@ -30,6 +30,10 @@
** =======================================================
*/
/* default path */
#define LUA_PATH_DEFAULT "?;?.lua"
/* type of numbers in Lua */
#define LUA_NUMBER double
@ -279,9 +283,6 @@
/* wild char in each template */
#define LUA_PATH_MARK "?"
/* default path */
#define LUA_PATH_DEFAULT "?;?.lua"
/* maximum number of captures in pattern-matching */
#define MAX_CAPTURES 32 /* arbitrary limit */