lua

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

commit 8998032f66ce11d3eac6c0730a39a3e676b0733c
parent 80b475353931613e49f4dffac6f2a9b41ef643a8
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Fri, 14 Sep 2007 10:25:40 -0300

detail

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

diff --git a/luaconf.h b/luaconf.h @@ -1,5 +1,5 @@ /* -** $Id: luaconf.h,v 1.90 2007/06/22 16:59:11 roberto Exp roberto $ +** $Id: luaconf.h,v 1.91 2007/08/30 16:13:13 roberto Exp roberto $ ** Configuration file for Lua ** See Copyright Notice in lua.h */ @@ -24,7 +24,7 @@ ** CHANGE it (define it) if you want Lua to avoid the use of any ** non-ansi feature or library. */ -#if defined(__STRICT_ANSI__) +#if !defined(LUA_ANSI) && defined(__STRICT_ANSI__) #define LUA_ANSI #endif