From b004d3e8300ba803d4a499148fa4fc6a690149e6 Mon Sep 17 00:00:00 2001 From: Koichi Sasada Date: Thu, 8 Aug 2019 17:53:36 +0900 Subject: solve "duplicate :raise event" [Bug #15877] Without this patch, "raise" event invoked twice when raise an exception in "load"ed script. This patch by danielwaterworth (Daniel Waterworth). [Bug #15877] --- eval_intern.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'eval_intern.h') diff --git a/eval_intern.h b/eval_intern.h index db28aa1598..7c90972103 100644 --- a/eval_intern.h +++ b/eval_intern.h @@ -277,9 +277,7 @@ NORETURN(void rb_print_undef(VALUE, ID, rb_method_visibility_t)); NORETURN(void rb_print_undef_str(VALUE, VALUE)); NORETURN(void rb_print_inaccessible(VALUE, ID, rb_method_visibility_t)); NORETURN(void rb_vm_localjump_error(const char *,VALUE, int)); -#if 0 NORETURN(void rb_vm_jump_tag_but_local_jump(int)); -#endif VALUE rb_vm_make_jump_tag_but_local_jump(int state, VALUE val); rb_cref_t *rb_vm_cref(void); -- cgit v1.2.1