mirror of https://github.com/lua/lua
details (temporary?)
This commit is contained in:
parent
88607acc2c
commit
f32a8c0477
7
lua.c
7
lua.c
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: lua.c,v 1.92 2002/06/18 17:43:49 roberto Exp roberto $
|
** $Id: lua.c,v 1.93 2002/06/20 20:40:09 roberto Exp roberto $
|
||||||
** Lua stand-alone interpreter
|
** Lua stand-alone interpreter
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -312,11 +312,8 @@ static int handle_argv (char *argv[], int *toclose) {
|
||||||
print_usage();
|
print_usage();
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
if (dostring(chunk, "=prog. argument") != 0) {
|
if (dostring(chunk, "=command line") != 0)
|
||||||
fprintf(stderr, "%s: error running argument `%.99s'\n",
|
|
||||||
progname, chunk);
|
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'f': {
|
case 'f': {
|
||||||
|
|
Loading…
Reference in New Issue