1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* proc.c (mnew): initialize a field. a patch from Takahiro Kambe.

[ruby-dev:41312]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27849 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2010-05-16 13:25:29 +00:00
parent 0ee8d28e9e
commit db6099161b
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Sun May 16 22:21:32 2010 Yusuke Endoh <mame@tsg.ne.jp>
* proc.c (mnew): initialize a field. a patch from Takahiro Kambe.
[ruby-dev:41312]
Sun May 16 22:17:35 2010 Yusuke Endoh <mame@tsg.ne.jp>
* eval.c (setup_exception): let SystemStackError#backtrace return an

1
proc.c
View file

@ -914,6 +914,7 @@ mnew(VALUE klass, VALUE obj, ID id, VALUE mclass, int scope)
def->alias_count = 0;
meb.flag = 0;
meb.mark = 0;
meb.called_id = id;
meb.klass = klass;
meb.def = def;