diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-08-30 10:44:04 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-08-30 10:44:04 -0300 |
commit | 857253cdfcddf4f49c7cec15791f948d1d7612bb (patch) | |
tree | 5777fc298caea13c19a2ad9b155c39401e831e3b | |
parent | 5dcd908add10cdeb74400fb2e67ba58079c69ae7 (diff) | |
download | lua-857253cdfcddf4f49c7cec15791f948d1d7612bb.tar.gz lua-857253cdfcddf4f49c7cec15791f948d1d7612bb.tar.bz2 lua-857253cdfcddf4f49c7cec15791f948d1d7612bb.zip |
detail
-rw-r--r-- | luaconf.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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 */ |