From ebcf546a551cae37835af5ddf6105e2e97706047 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 23 Oct 1995 11:53:48 -0200 Subject: small changes in the format of debug information. --- iolib.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'iolib.c') diff --git a/iolib.c b/iolib.c index 31eba5c5..90d4ee57 100644 --- a/iolib.c +++ b/iolib.c @@ -3,7 +3,7 @@ ** Input/output library to LUA */ -char *rcs_iolib="$Id: iolib.c,v 1.23 1995/10/11 20:50:56 roberto Exp roberto $"; +char *rcs_iolib="$Id: iolib.c,v 1.24 1995/10/17 14:12:45 roberto Exp roberto $"; #include #include @@ -617,14 +617,15 @@ static void print_message (void) lua_funcinfo(func, &filename, &funcname, &objname, &linedefined); if (objname == NULL) if (funcname) - fprintf(stderr, "\t%s\n", funcname); + fprintf(stderr, "\t%s", funcname); else { fprintf(stderr, "\tmain of %s\n", filename); + continue; } else - fprintf(stderr, "\t%s:%s\n", objname, funcname); -/* fprintf(stderr, "\t(in file: %s)\n", filename); */ + fprintf(stderr, "\t%s:%s", objname, funcname); + fprintf(stderr, "\t(defined in %s)\n", filename); } } -- cgit v1.2.3-55-g6feb