aboutsummaryrefslogtreecommitdiff
path: root/inout.c
diff options
context:
space:
mode:
authorWaldemar Celes <celes@tecgraf.puc-rio.br>1994-09-05 18:22:43 -0300
committerWaldemar Celes <celes@tecgraf.puc-rio.br>1994-09-05 18:22:43 -0300
commit1ea0d09281ccc14b9a0f59cac2bb26e4fc9d6a33 (patch)
treef0364f868794dc013c91fafd1a35a4957c31f5c4 /inout.c
parent3693f3f06218415cd72f7f198951ec2d7a82af46 (diff)
downloadlua-1ea0d09281ccc14b9a0f59cac2bb26e4fc9d6a33.tar.gz
lua-1ea0d09281ccc14b9a0f59cac2bb26e4fc9d6a33.tar.bz2
lua-1ea0d09281ccc14b9a0f59cac2bb26e4fc9d6a33.zip
Alteracao do buffer de funcao de 32 para 64.
Diffstat (limited to 'inout.c')
-rw-r--r--inout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/inout.c b/inout.c
index f27e723b..233fe88e 100644
--- a/inout.c
+++ b/inout.c
@@ -4,7 +4,7 @@
4** facilities. 4** facilities.
5*/ 5*/
6 6
7char *rcs_inout="$Id: inout.c,v 2.1 1994/07/19 21:27:18 celes Exp roberto $"; 7char *rcs_inout="$Id: inout.c,v 2.2 1994/08/17 22:22:44 roberto Exp celes $";
8 8
9#include <stdio.h> 9#include <stdio.h>
10#include <string.h> 10#include <string.h>
@@ -23,7 +23,7 @@ int lua_debugline;
23 23
24/* Internal variables */ 24/* Internal variables */
25#ifndef MAXFUNCSTACK 25#ifndef MAXFUNCSTACK
26#define MAXFUNCSTACK 32 26#define MAXFUNCSTACK 64
27#endif 27#endif
28static struct { int file; int function; } funcstack[MAXFUNCSTACK]; 28static struct { int file; int function; } funcstack[MAXFUNCSTACK];
29static int nfuncstack=0; 29static int nfuncstack=0;