aboutsummaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-06-17 14:04:03 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-06-17 14:04:03 -0300
commit36b6fe8d175bb2aec8fc55ffb090eab90cb12fd8 (patch)
treeefa22fb54a0d354249d9f3c9e0a26118d6527bd0 /ldo.c
parentd4dce57f5ca64c65c7c49eac683b8f807e8dc02d (diff)
downloadlua-36b6fe8d175bb2aec8fc55ffb090eab90cb12fd8.tar.gz
lua-36b6fe8d175bb2aec8fc55ffb090eab90cb12fd8.tar.bz2
lua-36b6fe8d175bb2aec8fc55ffb090eab90cb12fd8.zip
better treatment for arbitrary limits
Diffstat (limited to 'ldo.c')
-rw-r--r--ldo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldo.c b/ldo.c
index 2216d97a..c6c418a1 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 1.42 1999/05/10 13:54:01 roberto Exp roberto $ 2** $Id: ldo.c,v 1.43 1999/05/24 17:53:03 roberto Exp roberto $
3** Stack and Call structure of Lua 3** Stack and Call structure of Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -29,7 +29,7 @@
29 29
30 30
31#ifndef STACK_LIMIT 31#ifndef STACK_LIMIT
32#define STACK_LIMIT 6000 32#define STACK_LIMIT 6000 /* arbitrary limit */
33#endif 33#endif
34 34
35 35