Err.
authorAlexey Zaytsev <alexey.zaytsev@gmail.com>
Thu, 17 Jul 2008 23:34:28 +0000 (03:34 +0400)
committerAlexey Zaytsev <zaytsev.a@protei.ru>
Thu, 17 Jul 2008 23:34:28 +0000 (03:34 +0400)
Signed-off-by: Alexey Zaytsev <zaytsev.a@protei.ru>
com32/lua/src/loadlib.c

index d955f3e..906b47e 100644 (file)
@@ -589,7 +589,7 @@ static int ll_seeall (lua_State *L) {
 
 static void setpath (lua_State *L, const char *fieldname, const char *envname,
                                    const char *def) {
-  const char *path = getenv(envname);
+  const char *path = /*getenv(envname)*/ NULL;
   if (path == NULL)  /* no environment variable? */
     lua_pushstring(L, def);  /* use default */
   else {