lua

A copy of the Lua development repository
Log | Files | Refs | README

commit fca10c67335d4911b78d4ce2ca3083063ff677d4
parent 6bc68d464523932a4319f34810fd3f2a3db1dc7d
Author: Waldemar Celes <celes@tecgraf.puc-rio.br>
Date:   Thu, 13 Oct 1994 16:28:35 -0300

Aumentar buffer para saida.

Diffstat:
Miolib.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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 <stdlib.h> #include <string.h> @@ -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;