aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-11-19 13:00:42 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-11-19 13:00:42 -0200
commit244646bdf7ed8b9c01e93213337b1ab0547ceb1c (patch)
tree627d6629214ec513a0608a53a675684ca7d0c529
parent5bdfefd3a59169ef61af86c0774e9ca93d97d3d9 (diff)
downloadlua-244646bdf7ed8b9c01e93213337b1ab0547ceb1c.tar.gz
lua-244646bdf7ed8b9c01e93213337b1ab0547ceb1c.tar.bz2
lua-244646bdf7ed8b9c01e93213337b1ab0547ceb1c.zip
detail (LUAL_BUFFERSIZE has a larger variation among different
platforms)
-rw-r--r--luaconf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/luaconf.h b/luaconf.h
index 784f5472..78dde74a 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.226 2014/10/30 18:50:03 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.227 2014/11/02 19:35:39 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*/
@@ -710,7 +710,7 @@
710@@ LUAL_BUFFERSIZE is the buffer size used by the lauxlib buffer system. 710@@ LUAL_BUFFERSIZE is the buffer size used by the lauxlib buffer system.
711** CHANGE it if it uses too much C-stack space. 711** CHANGE it if it uses too much C-stack space.
712*/ 712*/
713#define LUAL_BUFFERSIZE (0x400 * sizeof(void*)) 713#define LUAL_BUFFERSIZE ((int)(0x80 * sizeof(void*) * sizeof(lua_Integer)))
714 714
715/* }================================================================== */ 715/* }================================================================== */
716 716