aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/lua.c b/lua.c
index 9bb4c1ab..b0892d1d 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.c,v 1.92 2002/06/18 17:43:49 roberto Exp roberto $ 2** $Id: lua.c,v 1.93 2002/06/20 20:40:09 roberto Exp roberto $
3** Lua stand-alone interpreter 3** Lua stand-alone interpreter
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -312,11 +312,8 @@ static int handle_argv (char *argv[], int *toclose) {
312 print_usage(); 312 print_usage();
313 return EXIT_FAILURE; 313 return EXIT_FAILURE;
314 } 314 }
315 if (dostring(chunk, "=prog. argument") != 0) { 315 if (dostring(chunk, "=command line") != 0)
316 fprintf(stderr, "%s: error running argument `%.99s'\n",
317 progname, chunk);
318 return EXIT_FAILURE; 316 return EXIT_FAILURE;
319 }
320 break; 317 break;
321 } 318 }
322 case 'f': { 319 case 'f': {