diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-08-28 02:45:41 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-08-28 02:45:41 +0000 |
| commit | bd78983475c06ed29711433a349a05482081cc34 (patch) | |
| tree | 7ecf3bf8229b0b8bad34356db259917894d4526c /vm_dump.c | |
| parent | 9c8f6e78f5a8749354fb9847368ce10c14151952 (diff) | |
| download | ruby-bd78983475c06ed29711433a349a05482081cc34.tar.gz ruby-bd78983475c06ed29711433a349a05482081cc34.tar.xz ruby-bd78983475c06ed29711433a349a05482081cc34.zip | |
* method.h (rb_method_definition_t): split from rb_method_entry_t
to deal aliases. [ruby-dev:39165]
* proc.c (struct METHOD): contains rb_method_entry_t copy.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_dump.c')
| -rw-r--r-- | vm_dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -113,8 +113,8 @@ control_frame_dump(rb_thread_t *th, rb_control_frame_t *cfp) } } else if (cfp->me) { - iseq_name = rb_id2name(cfp->me->original_id); - snprintf(posbuf, MAX_POSBUF, ":%s", rb_id2name(cfp->me->original_id)); + iseq_name = rb_id2name(cfp->me->def->original_id); + snprintf(posbuf, MAX_POSBUF, ":%s", iseq_name); line = -1; } |
