lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 857253cdfcddf4f49c7cec15791f948d1d7612bb
parent 5dcd908add10cdeb74400fb2e67ba58079c69ae7
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Mon, 30 Aug 2004 10:43:42 -0300

detail

Diffstat:
Mluaconf.h | 9+++++----
1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/luaconf.h b/luaconf.h @@ -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 */