From ff91b355f451c7b7fc286d8ca9bc8613096f497d Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 3 Jun 2002 11:09:57 -0300 Subject: no more use of stdio inside the core (except for `tostring'...) --- lstate.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'lstate.c') diff --git a/lstate.c b/lstate.c index cf8abefb..99b4bf75 100644 --- a/lstate.c +++ b/lstate.c @@ -1,12 +1,10 @@ /* -** $Id: lstate.c,v 1.93 2002/05/07 17:36:56 roberto Exp roberto $ +** $Id: lstate.c,v 1.94 2002/05/08 17:34:23 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ -#include - #include "lua.h" #include "ldo.h" @@ -30,7 +28,6 @@ static void close_state (lua_State *L); ** call `lua_setpanicf' */ static int default_panic (lua_State *L) { - fputs("unable to recover; exiting\n", stderr); return 0; } -- cgit v1.2.3-55-g6feb