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

ruby-changes:35852

From: usa <ko1@a...>
Date: Wed, 15 Oct 2014 16:13:59 +0900 (JST)
Subject: [ruby-changes:35852] usa:r47934 (ruby_2_0_0): merge revision(s) 47850: [Backport #10294]

usa	2014-10-15 16:13:47 +0900 (Wed, 15 Oct 2014)

  New Revision: 47934

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

  Log:
    merge revision(s) 47850: [Backport #10294]
    
    * dir.c (dir_s_aref): fix rdoc.  `Dir.glob` allows an array but
      `Dir[]` not.  the former accepts an optional parameter `flags`,
      while the latter accepts arbitrary number of arguments but no
      `flags`.  [ruby-core:65265] [Bug #10294]

  Modified directories:
    branches/ruby_2_0_0/
  Modified files:
    branches/ruby_2_0_0/ChangeLog
    branches/ruby_2_0_0/dir.c
    branches/ruby_2_0_0/version.h
Index: ruby_2_0_0/ChangeLog
===================================================================
--- ruby_2_0_0/ChangeLog	(revision 47933)
+++ ruby_2_0_0/ChangeLog	(revision 47934)
@@ -1,3 +1,10 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/ChangeLog#L1
+Wed Oct 15 16:13:28 2014  Nobuyoshi Nakada  <nobu@r...>
+
+	* dir.c (dir_s_aref): fix rdoc.  `Dir.glob` allows an array but
+	  `Dir[]` not.  the former accepts an optional parameter `flags`,
+	  while the latter accepts arbitrary number of arguments but no
+	  `flags`.  [ruby-core:65265] [Bug #10294]
+
 Wed Oct 15 16:12:11 2014  Rei Odaira  <Rei.Odaira@g...>
 
 	* configure.in: Fix typo. [Bug #9914]
Index: ruby_2_0_0/dir.c
===================================================================
--- ruby_2_0_0/dir.c	(revision 47933)
+++ ruby_2_0_0/dir.c	(revision 47934)
@@ -1751,11 +1751,9 @@ dir_globs(long argc, VALUE *argv, int fl https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/dir.c#L1751
 
 /*
  *  call-seq:
- *     Dir[ array ]                 -> array
  *     Dir[ string [, string ...] ] -> array
  *
  *  Equivalent to calling
- *  <code>Dir.glob(</code><i>array,</i><code>0)</code> and
  *  <code>Dir.glob([</code><i>string,...</i><code>],0)</code>.
  *
  */
Index: ruby_2_0_0/version.h
===================================================================
--- ruby_2_0_0/version.h	(revision 47933)
+++ ruby_2_0_0/version.h	(revision 47934)
@@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/version.h#L1
 #define RUBY_VERSION "2.0.0"
 #define RUBY_RELEASE_DATE "2014-10-15"
-#define RUBY_PATCHLEVEL 581
+#define RUBY_PATCHLEVEL 582
 
 #define RUBY_RELEASE_YEAR 2014
 #define RUBY_RELEASE_MONTH 10

Property changes on: ruby_2_0_0
___________________________________________________________________
Modified: svn:mergeinfo
   Merged /trunk:r47850


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

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