From c36b5cc726dc5443d78b59c4ef1be2a41e08de59 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 15 Feb 2002 13:15:10 -0200 Subject: detail --- lua.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lua.c') diff --git a/lua.c b/lua.c index 6711fd4c..11fb75ab 100644 --- a/lua.c +++ b/lua.c @@ -1,5 +1,5 @@ /* -** $Id: lua.c,v 1.76 2002/02/14 21:47:50 roberto Exp roberto $ +** $Id: lua.c,v 1.77 2002/02/14 22:23:43 roberto Exp roberto $ ** Lua stand-alone interpreter ** See Copyright Notice in lua.h */ @@ -142,7 +142,7 @@ static int file_input (const char *name) { int result = ldo(lua_dofile, name, 1); if (result) { if (result == LUA_ERRFILE) { - fprintf(stderr, "%s%s\n", LUA_PROGNAME, luaL_errstr(result)); + fprintf(stderr, "%s%s ", LUA_PROGNAME, luaL_errstr(result)); perror(name); } return EXIT_FAILURE; -- cgit v1.2.3-55-g6feb