aboutsummaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-10-11 17:02:19 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-10-11 17:02:19 -0300
commit916587508c117decb2f4d70677fa06be18803874 (patch)
tree24f930dcb544c9ddb5a15394537b5d7d8e64169e /luaconf.h
parenta5382b763c2faa4c47e55ee0e49889b4c47daac4 (diff)
downloadlua-916587508c117decb2f4d70677fa06be18803874.tar.gz
lua-916587508c117decb2f4d70677fa06be18803874.tar.bz2
lua-916587508c117decb2f4d70677fa06be18803874.zip
parser keeps list of active local variables in a single dynamic array,
therefore saving C stack space
Diffstat (limited to 'luaconf.h')
-rw-r--r--luaconf.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/luaconf.h b/luaconf.h
index c18681dc..f9cd7283 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.109 2009/08/25 19:58:08 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.110 2009/09/28 16:32:50 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*/
@@ -455,13 +455,6 @@
455 455
456 456
457/* 457/*
458@@ LUAI_MAXVARS is the maximum number of local variables per function
459@* (must be smaller than 250).
460*/
461#define LUAI_MAXVARS 200
462
463
464/*
465@@ LUAL_BUFFERSIZE is the buffer size used by the lauxlib buffer system. 458@@ LUAL_BUFFERSIZE is the buffer size used by the lauxlib buffer system.
466*/ 459*/
467#define LUAL_BUFFERSIZE BUFSIZ 460#define LUAL_BUFFERSIZE BUFSIZ