From 1a69a3eceab706f3b83abd41507aba1d969aaf4f Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 31 Oct 2014 13:54:06 -0200 Subject: LUA_WIN -> LUA_USE_WINDOWS --- lua.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lua.c') diff --git a/lua.c b/lua.c index 5838ef72..99aabfac 100644 --- a/lua.c +++ b/lua.c @@ -1,5 +1,5 @@ /* -** $Id: lua.c,v 1.217 2014/10/20 22:21:05 roberto Exp roberto $ +** $Id: lua.c,v 1.218 2014/10/29 16:11:17 roberto Exp roberto $ ** Lua stand-alone interpreter ** See Copyright Notice in lua.h */ @@ -50,7 +50,7 @@ #include #define lua_stdin_is_tty() isatty(0) -#elif defined(LUA_WIN) /* }{ */ +#elif defined(LUA_USE_WINDOWS) /* }{ */ #include #define lua_stdin_is_tty() _isatty(_fileno(stdin)) -- cgit v1.2.3-55-g6feb