ruby-changes:50000
From: kazu <ko1@a...>
Date: Wed, 31 Jan 2018 09:19:39 +0900 (JST)
Subject: [ruby-changes:50000] kazu:r62118 (trunk): Fix wrong function names in rb_bug messages [ci skip]
kazu 2018-01-31 09:19:33 +0900 (Wed, 31 Jan 2018) New Revision: 62118 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=62118 Log: Fix wrong function names in rb_bug messages [ci skip] Modified files: trunk/vm_trace.c Index: vm_trace.c =================================================================== --- vm_trace.c (revision 62117) +++ vm_trace.c (revision 62118) @@ -855,7 +855,7 @@ rb_tracearg_return_value(rb_trace_arg_t https://github.com/ruby/ruby/blob/trunk/vm_trace.c#L855 rb_raise(rb_eRuntimeError, "not supported by this event"); } if (trace_arg->data == Qundef) { - rb_bug("tp_attr_return_value_m: unreachable"); + rb_bug("rb_tracearg_return_value: unreachable"); } return trace_arg->data; } @@ -870,7 +870,7 @@ rb_tracearg_raised_exception(rb_trace_ar https://github.com/ruby/ruby/blob/trunk/vm_trace.c#L870 rb_raise(rb_eRuntimeError, "not supported by this event"); } if (trace_arg->data == Qundef) { - rb_bug("tp_attr_raised_exception_m: unreachable"); + rb_bug("rb_tracearg_raised_exception: unreachable"); } return trace_arg->data; } @@ -885,7 +885,7 @@ rb_tracearg_object(rb_trace_arg_t *trace https://github.com/ruby/ruby/blob/trunk/vm_trace.c#L885 rb_raise(rb_eRuntimeError, "not supported by this event"); } if (trace_arg->data == Qundef) { - rb_bug("tp_attr_raised_exception_m: unreachable"); + rb_bug("rb_tracearg_object: unreachable"); } return trace_arg->data; } -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/