From 7767638d90e56f7d9b7355bc485ca26da64dfe7b Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 14 Oct 2003 10:09:39 +0000 Subject: * eval.c (ruby_finalize_0): return the given exit status unless SystemExit got raised. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4759 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'eval.c') diff --git a/eval.c b/eval.c index de615d29a..d2963dfd1 100644 --- a/eval.c +++ b/eval.c @@ -1309,8 +1309,8 @@ ruby_options(argc, argv) void rb_exec_end_proc _((void)); static int -ruby_finalize_0(exp) - int exp; +ruby_finalize_0(ex) + int ex; { ruby_errinfo = 0; PUSH_TAG(PROT_NONE); @@ -1326,7 +1326,7 @@ ruby_finalize_0(exp) VALUE st = rb_iv_get(ruby_errinfo, "status"); return NUM2INT(st); } - return EXIT_SUCCESS; + return ex; } void -- cgit