From 586e510577aac83ab1a94e6da9b7760389d3a7f1 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 8 Aug 2002 17:08:41 -0300 Subject: details --- lua.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua.c b/lua.c index 03c8a496..d662e485 100644 --- a/lua.c +++ b/lua.c @@ -1,5 +1,5 @@ /* -** $Id: lua.c,v 1.99 2002/08/06 18:01:50 roberto Exp roberto $ +** $Id: lua.c,v 1.100 2002/08/07 20:54:17 roberto Exp roberto $ ** Lua stand-alone interpreter ** See Copyright Notice in lua.h */ @@ -91,7 +91,7 @@ static void report (int status) { const char *msg; if (status) { msg = lua_tostring(L, -1); - if (msg == NULL) msg = "(no message)"; + if (msg == NULL) msg = "(error with no message)"; l_message(progname, msg); lua_pop(L, 1); } -- cgit v1.2.3-55-g6feb