diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2007-09-14 10:26:03 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2007-09-14 10:26:03 -0300 |
commit | 8998032f66ce11d3eac6c0730a39a3e676b0733c (patch) | |
tree | 70764ce518cb3c067440db42b751940d75ee891d | |
parent | 80b475353931613e49f4dffac6f2a9b41ef643a8 (diff) | |
download | lua-8998032f66ce11d3eac6c0730a39a3e676b0733c.tar.gz lua-8998032f66ce11d3eac6c0730a39a3e676b0733c.tar.bz2 lua-8998032f66ce11d3eac6c0730a39a3e676b0733c.zip |
detail
-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.90 2007/06/22 16:59:11 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.91 2007/08/30 16:13:13 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 | */ |
@@ -24,7 +24,7 @@ | |||
24 | ** CHANGE it (define it) if you want Lua to avoid the use of any | 24 | ** CHANGE it (define it) if you want Lua to avoid the use of any |
25 | ** non-ansi feature or library. | 25 | ** non-ansi feature or library. |
26 | */ | 26 | */ |
27 | #if defined(__STRICT_ANSI__) | 27 | #if !defined(LUA_ANSI) && defined(__STRICT_ANSI__) |
28 | #define LUA_ANSI | 28 | #define LUA_ANSI |
29 | #endif | 29 | #endif |
30 | 30 | ||