mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* vm_insnhelper.c (ep_cref): rename to lep_cref() because it should be
local ep. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49906 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2e02f2dfd2
commit
c5c5e96643
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Mar 9 21:42:10 2015 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* vm_insnhelper.c (ep_cref): rename to lep_cref() because it should be
|
||||
local ep.
|
||||
|
||||
Mon Mar 9 16:34:36 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/stringio/stringio.c (strio_close): don't raise on dobule
|
||||
|
|
|
@ -254,7 +254,7 @@ vm_getspecial(rb_thread_t *th, VALUE *lep, rb_num_t key, rb_num_t type)
|
|||
}
|
||||
|
||||
static rb_cref_t *
|
||||
ep_cref(const VALUE *ep)
|
||||
lep_cref(const VALUE *ep)
|
||||
{
|
||||
const VALUE svar = ep[-1];
|
||||
|
||||
|
@ -278,7 +278,7 @@ vm_get_cref0(const VALUE *ep)
|
|||
}
|
||||
ep = VM_EP_PREV_EP(ep);
|
||||
}
|
||||
return ep_cref(ep);
|
||||
return lep_cref(ep);
|
||||
}
|
||||
|
||||
rb_cref_t *
|
||||
|
|
Loading…
Add table
Reference in a new issue