From accd7bc25355be4350db6d117515c672121a67f2 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 21 Nov 1997 17:00:46 -0200 Subject: small modifications (format, small optimizations, etc) --- lua.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lua.c') diff --git a/lua.c b/lua.c index 0eb21982..2484d3bc 100644 --- a/lua.c +++ b/lua.c @@ -1,5 +1,5 @@ /* -** $Id: lua.c,v 1.3 1997/10/16 18:35:59 roberto Exp roberto $ +** $Id: lua.c,v 1.4 1997/11/19 17:29:23 roberto Exp roberto $ ** Lua stand-alone interpreter ** See Copyright Notice in lua.h */ @@ -72,7 +72,7 @@ int main (int argc, char *argv[]) } } else { - int result = lua_dofile (argv[i]); + int result = lua_dofile(argv[i]); if (result) { if (result == 2) { fprintf(stderr, "lua: cannot execute file "); -- cgit v1.2.3-55-g6feb