mirror of https://github.com/rusefi/lua.git
detail (LUAL_BUFFERSIZE has a larger variation among different
platforms)
This commit is contained in:
parent
5bdfefd3a5
commit
244646bdf7
|
@ -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)))
|
||||
|
||||
/* }================================================================== */
|
||||
|
||||
|
|
Loading…
Reference in New Issue