aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2007-09-14 10:26:03 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2007-09-14 10:26:03 -0300
commit8998032f66ce11d3eac6c0730a39a3e676b0733c (patch)
tree70764ce518cb3c067440db42b751940d75ee891d
parent80b475353931613e49f4dffac6f2a9b41ef643a8 (diff)
downloadlua-8998032f66ce11d3eac6c0730a39a3e676b0733c.tar.gz
lua-8998032f66ce11d3eac6c0730a39a3e676b0733c.tar.bz2
lua-8998032f66ce11d3eac6c0730a39a3e676b0733c.zip
detail
-rw-r--r--luaconf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/luaconf.h b/luaconf.h
index 4680d8af..1cd03cd8 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -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