aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-09-20 10:32:56 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-09-20 10:32:56 -0300
commit98d0b79613fadec653baf18eab360e365b364481 (patch)
tree1b07b0735d6eaefaa14b16f1ebd9ec18491e7174
parente8f35fc4ff01c09b3529e25caeca047e3e1e3517 (diff)
downloadlua-98d0b79613fadec653baf18eab360e365b364481.tar.gz
lua-98d0b79613fadec653baf18eab360e365b364481.tar.bz2
lua-98d0b79613fadec653baf18eab360e365b364481.zip
EXIT_SUCCESS may be different from 0
-rw-r--r--lua.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.c b/lua.c
index eed8be8a..fdda8be8 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.c,v 1.103 2002/08/13 15:04:59 roberto Exp roberto $ 2** $Id: lua.c,v 1.104 2002/09/05 19:45:42 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*/
@@ -337,7 +337,7 @@ static int handle_argv (char *argv[], int *interactive) {
337 return file_input(filename); /* stop scanning arguments */ 337 return file_input(filename); /* stop scanning arguments */
338 } 338 }
339 } 339 }
340 return EXIT_SUCCESS; 340 return 0;
341} 341}
342 342
343 343