diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-22 08:29:53 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-22 08:29:53 +0000 |
commit | fe2a0c0e80b99e3fed542aa4a6b05bd8f98ecdef (patch) | |
tree | 6f7ea756345ec2dfc6fe14977248966c9ecd101b | |
parent | c25d85f4e5e886dc8dbc8cdaa52f1d6932f4a886 (diff) | |
download | ruby-fe2a0c0e80b99e3fed542aa4a6b05bd8f98ecdef.tar.gz ruby-fe2a0c0e80b99e3fed542aa4a6b05bd8f98ecdef.tar.xz ruby-fe2a0c0e80b99e3fed542aa4a6b05bd8f98ecdef.zip |
* parse.y (arg_prepend): removed. a patch from Mikhail T. in
[ruby-core:26217].
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25432 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | parse.y | 1 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Thu Oct 22 17:29:51 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * parse.y (arg_prepend): removed. a patch from Mikhail T. in + [ruby-core:26217]. + Thu Oct 22 04:54:41 2009 Yukihiro Matsumoto <matz@ruby-lang.org> * object.c (rb_obj_inspect): print instance variables only when @@ -522,7 +522,6 @@ static VALUE ripper_id2sym(ID); #define arg_new() dispatch0(args_new) #define arg_add(l,a) dispatch2(args_add, l, a) -#define arg_prepend(l,a) dispatch2(args_prepend, l, a) #define arg_add_star(l,a) dispatch2(args_add_star, l, a) #define arg_add_block(l,b) dispatch2(args_add_block, l, b) #define arg_add_optblock(l,b) ((b)==Qundef? l : dispatch2(args_add_block, l, b)) |