[前][次][番号順一覧][スレッド一覧]

ruby-changes:14190

From: yugui <ko1@a...>
Date: Sat, 5 Dec 2009 18:43:30 +0900 (JST)
Subject: [ruby-changes:14190] Ruby:r26010 (ruby_1_9_1): merges r25300 from trunk into ruby_1_9_1.

yugui	2009-12-05 18:39:39 +0900 (Sat, 05 Dec 2009)

  New Revision: 26010

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=26010

  Log:
    merges r25300 from trunk into ruby_1_9_1.
    --
    * ext/gdbm/gdbm.c (fgdbm_select): fixed rdoc.  a patch from Justin
      Collins in [ruby-core:26050].

  Modified files:
    branches/ruby_1_9_1/ChangeLog
    branches/ruby_1_9_1/ext/gdbm/gdbm.c
    branches/ruby_1_9_1/version.h

Index: ruby_1_9_1/ChangeLog
===================================================================
--- ruby_1_9_1/ChangeLog	(revision 26009)
+++ ruby_1_9_1/ChangeLog	(revision 26010)
@@ -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].
+
 Sat Aug 22 01:29:29 2009  Nobuyoshi Nakada  <nobu@r...>
 
 	* lib/mkmf.rb (rm_f, rm_rf): pass the last hash through if exists.
Index: ruby_1_9_1/ext/gdbm/gdbm.c
===================================================================
--- ruby_1_9_1/ext/gdbm/gdbm.c	(revision 26009)
+++ ruby_1_9_1/ext/gdbm/gdbm.c	(revision 26010)
@@ -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_9_1/version.h
===================================================================
--- ruby_1_9_1/version.h	(revision 26009)
+++ ruby_1_9_1/version.h	(revision 26010)
@@ -1,5 +1,5 @@
 #define RUBY_VERSION "1.9.1"
-#define RUBY_PATCHLEVEL 363
+#define RUBY_PATCHLEVEL 364
 #define RUBY_VERSION_MAJOR 1
 #define RUBY_VERSION_MINOR 9
 #define RUBY_VERSION_TEENY 1

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]