From 1521f3d8f60da0bc12cc078c945583cd0fec1794 Mon Sep 17 00:00:00 2001 From: matz Date: Sat, 17 Jun 2006 14:50:04 +0000 Subject: * eval.c (Init_eval): add aliases invoke_method and invoke_functional_method corresponding send and funcall respectively. [ruby-talk:197512] * parse.y (parser_yylex): returns the most typical keyword token on EXPR_FNAME. [ruby-core:7995] * ext/socket/socket.c: protoize. * parse.y (then): remove ':' from 'then' and 'do' rules. * hash.c (env_aset): raise TypeError on nil with more descriptive message. [ruby-core:07990] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10304 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 2bc59e941..9fb879df6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +Sat Jun 17 23:42:26 2006 Yukihiro Matsumoto + + * eval.c (Init_eval): add aliases invoke_method and + invoke_functional_method corresponding send and funcall + respectively. [ruby-talk:197512] + + * parse.y (parser_yylex): returns the most typical keyword token + on EXPR_FNAME. [ruby-core:7995] + + * ext/socket/socket.c: protoize. + Sat Jun 17 14:53:32 2006 Tanaka Akira * lib/pathname.rb (Kernel#Pathname): new method. @@ -7,16 +18,16 @@ Sat Jun 17 02:01:00 2006 Tanaka Akira * lib/pp.rb (Kernel#pretty_inspect): defined for pretty printed string. -Sat Jun 17 00:23:58 2006 Nobuyoshi Nakada - - * parse.y (reswords): kDO_BLOCK was missing. fixed: [ruby-core:7995] - Fri Jun 16 01:41:00 2006 Nobuyoshi Nakada * eval.c (rb_proc_arity): get rid of segfault for mere splat. * gc.c (gc_mark_children): NODE_BLOCK_PASS needs u3 to be marked. +Thu Jun 15 22:06:56 2006 Yukihiro Matsumoto + + * parse.y (then): remove ':' from 'then' and 'do' rules. + Wed Jun 14 18:00:20 2006 Eric Hodel * enum.c (enum_any): Documentation typo. @@ -30,6 +41,11 @@ Wed Jun 14 16:11:37 2006 NAKAMURA Usaku * eval.c (rb_f_method_name, rb_f_callee_name): document typo. +Wed Jun 14 15:19:14 2006 Yukihiro Matsumoto + + * hash.c (env_aset): raise TypeError on nil with more descriptive + message. [ruby-core:07990] + Tue Jun 13 17:22:19 2006 Yukihiro Matsumoto * ext/socket/socket.c (Init_socket): remove obsolete constants: -- cgit