1
0
mirror of https://github.com/lua/lua synced 2026-06-08 15:34:49 +00:00

small modifications (format, small optimizations, etc)

This commit is contained in:
Roberto Ierusalimschy
1997-11-21 17:00:46 -02:00
parent 6153200bc2
commit accd7bc253
13 changed files with 301 additions and 295 deletions
+2 -2
View File
@@ -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 ");