mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* eval_intern.h: use rb_node_newnode() directly.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24981 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
554e9a83e0
commit
c8c6fde56f
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Thu Sep 17 15:41:02 2009 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* eval_intern.h: use rb_node_newnode() directly.
|
||||
|
||||
Thu Sep 17 15:01:32 2009 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* blockinlining.c: removed.
|
||||
|
|
|
@ -157,7 +157,7 @@ enum ruby_tag_type {
|
|||
#define TAG_MASK RUBY_TAG_MASK
|
||||
|
||||
#define NEW_THROW_OBJECT(val, pt, st) \
|
||||
((VALUE)NEW_NODE(NODE_LIT, (val), (pt), (st)))
|
||||
((VALUE)rb_node_newnode(NODE_LIT, (VALUE)(val), (VALUE)(pt), (VALUE)(st)))
|
||||
#define SET_THROWOBJ_CATCH_POINT(obj, val) \
|
||||
(RNODE((obj))->u2.value = (val))
|
||||
#define SET_THROWOBJ_STATE(obj, val) \
|
||||
|
|
Loading…
Reference in a new issue