diff options
-rw-r--r-- | luaconf.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luaconf.h,v 1.240 2015/01/13 19:50:30 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.241 2015/01/16 17:15:52 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 | */ |
@@ -698,7 +698,8 @@ | |||
698 | #if defined(LUA_REAL_LONGDOUBLE) | 698 | #if defined(LUA_REAL_LONGDOUBLE) |
699 | #define LUAL_BUFFERSIZE 8192 | 699 | #define LUAL_BUFFERSIZE 8192 |
700 | #else | 700 | #else |
701 | #define LUAL_BUFFERSIZE (256 * (int)sizeof(lua_Integer)) | 701 | #define LUAL_BUFFERSIZE ((int)(0x80 * sizeof(void*) * sizeof(lua_Integer))) |
702 | |||
702 | #endif | 703 | #endif |
703 | 704 | ||
704 | /* }================================================================== */ | 705 | /* }================================================================== */ |