ruby-changes:7959
From: akr <ko1@a...>
Date: Tue, 23 Sep 2008 18:25:47 +0900 (JST)
Subject: [ruby-changes:7959] Ruby:r19481 (trunk): * hash.c (rb_obj_is_proc): declaration moved for rdoc.
akr 2008-09-23 18:25:27 +0900 (Tue, 23 Sep 2008) New Revision: 19481 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=19481 Log: * hash.c (rb_obj_is_proc): declaration moved for rdoc. Modified files: trunk/ChangeLog trunk/hash.c Index: ChangeLog =================================================================== --- ChangeLog (revision 19480) +++ ChangeLog (revision 19481) @@ -1,3 +1,7 @@ +Tue Sep 23 18:24:34 2008 Tanaka Akira <akr@f...> + + * hash.c (rb_obj_is_proc): declaration moved for rdoc. + Tue Sep 23 18:07:55 2008 Koichi Sasada <ko1@a...> * common.mk (io.o): remove dependency for vm_core.h. Index: hash.c =================================================================== --- hash.c (revision 19480) +++ hash.c (revision 19481) @@ -612,6 +612,8 @@ return Qnil; } +VALUE rb_obj_is_proc(VALUE proc); + /* * call-seq: * hsh.default_proc = proc_obj => proc_obj @@ -625,8 +627,6 @@ * h["cat"] #=> "catcat" */ -VALUE rb_obj_is_proc(VALUE proc); - static VALUE rb_hash_set_default_proc(VALUE hash, VALUE proc) { -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/