From fca10c67335d4911b78d4ce2ca3083063ff677d4 Mon Sep 17 00:00:00 2001 From: Waldemar Celes Date: Thu, 13 Oct 1994 16:28:54 -0300 Subject: [PATCH] Aumentar buffer para saida. --- iolib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iolib.c b/iolib.c index e553384e..ff568d23 100644 --- a/iolib.c +++ b/iolib.c @@ -3,7 +3,7 @@ ** Input/output library to LUA */ -char *rcs_iolib="$Id: iolib.c,v 1.10 1994/10/07 22:47:05 celes Exp celes $"; +char *rcs_iolib="$Id: iolib.c,v 1.11 1994/10/13 17:18:32 celes Exp celes $"; #include #include @@ -374,7 +374,7 @@ static void io_readuntil (void) */ static char *buildformat (char *e, lua_Object o) { - static char buffer[512]; + static char buffer[2048]; static char f[80]; char *string = &buffer[255]; char *fstart=e, *fspace, *send;