lua

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

commit 244646bdf7ed8b9c01e93213337b1ab0547ceb1c
parent 5bdfefd3a59169ef61af86c0774e9ca93d97d3d9
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Wed, 19 Nov 2014 13:00:17 -0200

detail (LUAL_BUFFERSIZE has a larger variation among different
platforms)

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.226 2014/10/30 18:50:03 roberto Exp roberto $ +** $Id: luaconf.h,v 1.227 2014/11/02 19:35:39 roberto Exp roberto $ ** Configuration file for Lua ** See Copyright Notice in lua.h */ @@ -710,7 +710,7 @@ @@ LUAL_BUFFERSIZE is the buffer size used by the lauxlib buffer system. ** CHANGE it if it uses too much C-stack space. */ -#define LUAL_BUFFERSIZE (0x400 * sizeof(void*)) +#define LUAL_BUFFERSIZE ((int)(0x80 * sizeof(void*) * sizeof(lua_Integer))) /* }================================================================== */