diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-11 06:54:54 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-11 06:54:54 +0000 |
commit | 5d1364df501aaa8fd144562c4efe62611a260bc6 (patch) | |
tree | 7d493bc160c35d3f4cf677a66cf025f4d183f4aa | |
parent | d13255aa4024d19c3d6ddc33fa7de1482dc88dac (diff) |
* ext/gdbm/gdbm.c (fgdbm_select): fixed rdoc. a patch from Justin
Collins in [ruby-core:26050].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@25300 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/gdbm/gdbm.c | 4 | ||||
-rw-r--r-- | version.h | 6 |
3 files changed, 10 insertions, 5 deletions
@@ -1,3 +1,8 @@ +Sun Oct 11 15:54:52 2009 Nobuyoshi Nakada <[email protected]> + + * 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 <[email protected]> * ext/curses/curses.c: Many functions of module Curses could cause a diff --git a/ext/gdbm/gdbm.c b/ext/gdbm/gdbm.c index 30a282c9c3..d4ea598745 100644 --- a/ext/gdbm/gdbm.c +++ b/ext/gdbm/gdbm.c @@ -483,9 +483,9 @@ fgdbm_indexes(argc, argv, obj) /* * 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 @@ -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[]; |