From 0400f85d45ab989422bf812bbe84fa79096edbd5 Mon Sep 17 00:00:00 2001 From: aamine Date: Mon, 29 Jul 2002 23:34:43 +0000 Subject: * eval.c (localjump_error): add parameter type declaration. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2665 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ eval.c | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 8155c6adc..b7674b0d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Jul 30 08:37:11 2002 Minero Aoki + + * eval.c (localjump_error): add parameter type declaration. + Mon Jul 29 16:00:54 2002 WATANABE Hirofumi * ext/extmk.rb.in: always use File.expand_path for $top_srcdir. diff --git a/eval.c b/eval.c index 25660fdce..a8bcb8bdf 100644 --- a/eval.c +++ b/eval.c @@ -1348,6 +1348,7 @@ rb_eval_string_wrap(str, state) static void localjump_error(mesg, status) const char *mesg; + VALUE status; { VALUE exc = rb_exc_new2(rb_eLocalJumpError, mesg); rb_iv_set(exc, "@status", status); -- cgit