mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* eval.c (ruby_finalize_0): return the given exit status unless
SystemExit got raised. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4759 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
921d595fd4
commit
0b841783b5
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue Oct 14 19:09:35 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* eval.c (ruby_finalize_0): return the given exit status unless
|
||||
SystemExit got raised.
|
||||
|
||||
Tue Oct 14 11:53:49 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* intern.h (ruby_stop): never return.
|
||||
|
|
6
eval.c
6
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
|
||||
|
|
Loading…
Reference in a new issue