ruby-changes:52587
From: ko1 <ko1@a...>
Date: Fri, 21 Sep 2018 15:31:00 +0900 (JST)
Subject: [ruby-changes:52587] ko1:r64799 (trunk): fix typo.
ko1 2018-09-21 15:30:54 +0900 (Fri, 21 Sep 2018) New Revision: 64799 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=64799 Log: fix typo. * vm_exec.h (DEBUG_END_INSN()): use `ec` instead of `th`. This macro is used when `VMDEBUG > 0`. Modified files: trunk/vm_exec.h Index: vm_exec.h =================================================================== --- vm_exec.h (revision 64798) +++ vm_exec.h (revision 64799) @@ -36,7 +36,7 @@ typedef rb_iseq_t *ISEQ; https://github.com/ruby/ruby/blob/trunk/vm_exec.h#L36 #endif #define DEBUG_END_INSN() \ - rb_vmdebug_debug_print_post(th, GET_CFP() SC_REGS()); + rb_vmdebug_debug_print_post(ec, GET_CFP() SC_REGS()); #else -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/