ruby-changes:13524
From: nobu <ko1@a...>
Date: Sun, 11 Oct 2009 15:55:20 +0900 (JST)
Subject: [ruby-changes:13524] Ruby:r25300 (ruby_1_8, trunk): * ext/gdbm/gdbm.c (fgdbm_select): fixed rdoc. a patch from Justin
nobu 2009-10-11 15:54:54 +0900 (Sun, 11 Oct 2009) New Revision: 25300 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=25300 Log: * ext/gdbm/gdbm.c (fgdbm_select): fixed rdoc. a patch from Justin Collins in [ruby-core:26050]. Modified files: branches/ruby_1_8/ChangeLog branches/ruby_1_8/ext/gdbm/gdbm.c branches/ruby_1_8/version.h trunk/ChangeLog trunk/ext/gdbm/gdbm.c Index: ChangeLog =================================================================== --- ChangeLog (revision 25299) +++ ChangeLog (revision 25300) @@ -1,3 +1,8 @@ +Sun Oct 11 15:54:52 2009 Nobuyoshi Nakada <nobu@r...> + + * ext/gdbm/gdbm.c (fgdbm_select): fixed rdoc. a patch from Justin + Collins in [ruby-core:26050]. + Sun Oct 11 10:27:09 2009 Nobuyoshi Nakada <nobu@r...> * lib/irb/context.rb (IRB::Context#irb_name): removed duplicated Index: ext/gdbm/gdbm.c =================================================================== --- ext/gdbm/gdbm.c (revision 25299) +++ ext/gdbm/gdbm.c (revision 25300) @@ -435,9 +435,9 @@ /* * call-seq: - * gdbm.select { |value| block } -> array + * gdbm.select { |key, value| block } -> array * - * Returns a new array of all values of the database for which _block_ + * Returns a new array of all key-value pairs of the database for which _block_ * evaluates to true. */ static VALUE Index: ruby_1_8/ext/gdbm/gdbm.c =================================================================== --- ruby_1_8/ext/gdbm/gdbm.c (revision 25299) +++ ruby_1_8/ext/gdbm/gdbm.c (revision 25300) @@ -483,9 +483,9 @@ /* * call-seq: - * gdbm.select { |value| block } -> array + * gdbm.select { |key, value| block } -> array * - * Returns a new array of all values of the database for which _block_ + * Returns a new array of all key-value pairs of the database for which _block_ * evaluates to true. */ static VALUE Index: ruby_1_8/ChangeLog =================================================================== --- ruby_1_8/ChangeLog (revision 25299) +++ ruby_1_8/ChangeLog (revision 25300) @@ -1,3 +1,8 @@ +Sun Oct 11 15:54:52 2009 Nobuyoshi Nakada <nobu@r...> + + * ext/gdbm/gdbm.c (fgdbm_select): fixed rdoc. a patch from Justin + Collins in [ruby-core:26050]. + Fri Oct 9 02:39:47 2009 Marc-Andre Lafortune <ruby-core@m...> * ext/curses/curses.c: Many functions of module Curses could cause a Index: ruby_1_8/version.h =================================================================== --- ruby_1_8/version.h (revision 25299) +++ ruby_1_8/version.h (revision 25300) @@ -1,7 +1,7 @@ #define RUBY_VERSION "1.8.8" -#define RUBY_RELEASE_DATE "2009-10-09" +#define RUBY_RELEASE_DATE "2009-10-11" #define RUBY_VERSION_CODE 188 -#define RUBY_RELEASE_CODE 20091009 +#define RUBY_RELEASE_CODE 20091011 #define RUBY_PATCHLEVEL -1 #define RUBY_VERSION_MAJOR 1 @@ -9,7 +9,7 @@ #define RUBY_VERSION_TEENY 8 #define RUBY_RELEASE_YEAR 2009 #define RUBY_RELEASE_MONTH 10 -#define RUBY_RELEASE_DAY 9 +#define RUBY_RELEASE_DAY 11 #ifdef RUBY_EXTERN RUBY_EXTERN const char ruby_version[]; -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/