From 5d6de9075d27de4a891a3428b1394f1f721037d6 Mon Sep 17 00:00:00 2001
From: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Tue, 15 Dec 1998 12:59:59 -0200
Subject: "print" uses fputs instead of printf (easier to reimplement).

---
 lbuiltin.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/lbuiltin.c b/lbuiltin.c
index 495f43d8..d09d4f72 100644
--- a/lbuiltin.c
+++ b/lbuiltin.c
@@ -1,5 +1,5 @@
 /*
-** $Id: lbuiltin.c,v 1.35 1998/11/13 16:39:18 roberto Exp roberto $
+** $Id: lbuiltin.c,v 1.36 1998/12/03 15:45:15 roberto Exp roberto $
 ** Built-in functions
 ** See Copyright Notice in lua.h
 */
@@ -234,10 +234,11 @@ static void luaI_print (void) {
     luaD_calln(1, 1);
     if (ttype(L->stack.top-1) != LUA_T_STRING)
       lua_error("`tostring' must return a string to `print'");
-    printf("%.200s\t", svalue(L->stack.top-1));
+    if (i>2) fputs("\t", stdout);
+    fputs(svalue(L->stack.top-1), stdout);
     L->stack.top--;
   }
-  printf("\n");
+  fputs("\n", stdout);
 }
 
 
-- 
cgit v1.2.3-55-g6feb