aboutsummaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-27 14:29:58 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-27 14:29:58 -0200
commit491103708e5516c94fa3e1af0af3a52065c40959 (patch)
tree8b3cf176ff09d74fb3e6045f29344a8fcfc4cb42 /llimits.h
parentfa4d5c86895fa176c4d7435a23d48a053b15b176 (diff)
downloadlua-491103708e5516c94fa3e1af0af3a52065c40959.tar.gz
lua-491103708e5516c94fa3e1af0af3a52065c40959.tar.bz2
lua-491103708e5516c94fa3e1af0af3a52065c40959.zip
'MAXSTACK' -> 'MAXREGS' and moved to 'lcode.c' (there is no reason
to change that constant...)
Diffstat (limited to 'llimits.h')
-rw-r--r--llimits.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/llimits.h b/llimits.h
index f1aee785..076a0952 100644
--- a/llimits.h
+++ b/llimits.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llimits.h,v 1.120 2014/07/18 18:29:12 roberto Exp roberto $ 2** $Id: llimits.h,v 1.121 2014/10/25 11:50:46 roberto Exp roberto $
3** Limits, basic types, and some other 'installation-dependent' definitions 3** Limits, basic types, and some other 'installation-dependent' definitions
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -156,10 +156,6 @@ typedef lu_int32 Instruction;
156 156
157 157
158 158
159/* maximum stack for a Lua function */
160#define MAXSTACK 250
161
162
163 159
164/* minimum size for the string table (must be power of 2) */ 160/* minimum size for the string table (must be power of 2) */
165#if !defined(MINSTRTABSIZE) 161#if !defined(MINSTRTABSIZE)