summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lua.c b/lua.c
index 3731b821..3f7093f7 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.c,v 1.186 2010/02/11 17:12:27 roberto Exp roberto $ 2** $Id: lua.c,v 1.187 2010/02/18 19:18:41 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*/
@@ -374,7 +374,6 @@ static int collectargs (char **argv, int *pi, int *pv, int *pe) {
374static int runargs (lua_State *L, char **argv, int n) { 374static int runargs (lua_State *L, char **argv, int n) {
375 int i; 375 int i;
376 for (i = 1; i < n; i++) { 376 for (i = 1; i < n; i++) {
377 if (argv[i] == NULL) continue;
378 lua_assert(argv[i][0] == '-'); 377 lua_assert(argv[i][0] == '-');
379 switch (argv[i][1]) { /* option */ 378 switch (argv[i][1]) { /* option */
380 case 'e': { 379 case 'e': {