summaryrefslogtreecommitdiff
path: root/lua.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-05-03 17:10:59 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-05-03 17:10:59 -0300
commit01ea523b80b347e62b2d653c652dbdc374ef08fb (patch)
tree6bffa9b6690396926564d9a0dc6bb9edb4f8fb51 /lua.c
parent88cf0836fc76f85040b638ac3888b2340e7e9ac0 (diff)
downloadlua-github-01ea523b80b347e62b2d653c652dbdc374ef08fb.tar.gz
small corrections.
Diffstat (limited to 'lua.c')
-rw-r--r--lua.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/lua.c b/lua.c
index b8a093d4..e755993c 100644
--- a/lua.c
+++ b/lua.c
@@ -3,7 +3,7 @@
** Linguagem para Usuarios de Aplicacao
*/
-char *rcs_lua="$Id: lua.c,v 1.8 1996/03/12 13:14:52 roberto Exp roberto $";
+char *rcs_lua="$Id: lua.c,v 1.9 1996/04/23 12:43:07 roberto Exp roberto $";
#include <stdio.h>
#include <string.h>
@@ -14,11 +14,15 @@ char *rcs_lua="$Id: lua.c,v 1.8 1996/03/12 13:14:52 roberto Exp roberto $";
static int lua_argc;
static char **lua_argv;
+#ifdef POSIX
/*
** although this function is POSIX, there is no standard header file that
** defines it
*/
int isatty (int fd);
+#else
+#define isatty(x) (x==0) /* assume stdin is a tty */
+#endif
/*
%F Allow Lua code to access argv strings.
@@ -83,7 +87,11 @@ int main (int argc, char *argv[])
printf("%s %s\n(written by %s)\n\n",
LUA_VERSION, LUA_COPYRIGHT, LUA_AUTHORS);
else
+ {
result = lua_dofile (argv[i]);
+ if (result)
+ fprintf(stderr, "lua: error trying to run file %s\n", argv[i]);
+ }
}
}
return result;