aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--luaconf.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/luaconf.h b/luaconf.h
index 2f337f96..5636beaf 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.8 2004/06/29 16:57:56 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.9 2004/07/09 14:29:29 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*/
@@ -30,6 +30,10 @@
30** ======================================================= 30** =======================================================
31*/ 31*/
32 32
33/* default path */
34#define LUA_PATH_DEFAULT "?;?.lua"
35
36
33/* type of numbers in Lua */ 37/* type of numbers in Lua */
34#define LUA_NUMBER double 38#define LUA_NUMBER double
35 39
@@ -279,9 +283,6 @@
279/* wild char in each template */ 283/* wild char in each template */
280#define LUA_PATH_MARK "?" 284#define LUA_PATH_MARK "?"
281 285
282/* default path */
283#define LUA_PATH_DEFAULT "?;?.lua"
284
285 286
286/* maximum number of captures in pattern-matching */ 287/* maximum number of captures in pattern-matching */
287#define MAX_CAPTURES 32 /* arbitrary limit */ 288#define MAX_CAPTURES 32 /* arbitrary limit */