lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Hi.
I was taking a look at luaconf.h and it seems to me that the definition of LUA_LDIR and LUA_CDIR under Windows are wrong.
Now it says:
#define LUA_LDIR    "!\\lua\\"
#define LUA_CDIR    "!\\"

Shouldn't that be:
#define LUA_LDIR    LUA_EXECDIR"\\lua\\"
#define LUA_CDIR    LUA_EXECDIR"\\"

??
Also, the definition of LUA_EXECDIR has to be moved above the definition of LUA_LDIR.

Regards,
Ignacio Burgueño