diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-09-14 14:23:03 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-09-14 14:23:03 -0300 |
commit | 6887f917999695aac6131091b78d99fb2718503d (patch) | |
tree | ea536fdbeebefe7bcc0deb9a31d777283d0b27f1 | |
parent | 7fbbf1adc606fdea2432809a7133389f0db3c9c5 (diff) | |
download | lua-6887f917999695aac6131091b78d99fb2718503d.tar.gz lua-6887f917999695aac6131091b78d99fb2718503d.tar.bz2 lua-6887f917999695aac6131091b78d99fb2718503d.zip |
":" is not a good mark as it is not valid in Windows file names
-rw-r--r-- | luaconf.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luaconf.h,v 1.64 2005/09/06 17:21:03 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.65 2005/09/09 18:24:42 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 | */ |
@@ -92,7 +92,7 @@ | |||
92 | #define LUA_PATHSEP ";" | 92 | #define LUA_PATHSEP ";" |
93 | #define LUA_PATH_MARK "?" | 93 | #define LUA_PATH_MARK "?" |
94 | #define LUA_EXECDIR "!" | 94 | #define LUA_EXECDIR "!" |
95 | #define LUA_IGMARK ":" | 95 | #define LUA_IGMARK "-" |
96 | 96 | ||
97 | 97 | ||
98 | /* | 98 | /* |