Skip to content

Commit b1c5f7e

Browse files
committed
merge revision(s) r47850: [Backport ruby#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 ruby#10294] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@47946 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 9ecfc87 commit b1c5f7e

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Wed Oct 15 23:10:07 2014 Nobuyoshi Nakada <[email protected]>
2+
3+
* dir.c (dir_s_aref): fix rdoc. `Dir.glob` allows an array but
4+
`Dir[]` not. the former accepts an optional parameter `flags`,
5+
while the latter accepts arbitrary number of arguments but no
6+
`flags`. [ruby-core:65265] [Bug #10294]
7+
18
Wed Oct 15 23:08:02 2014 Rei Odaira <[email protected]>
29

310
* configure.in: Fix typo. [Bug #9914]

dir.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1784,11 +1784,9 @@ dir_globs(long argc, const VALUE *argv, int flags)
17841784

17851785
/*
17861786
* call-seq:
1787-
* Dir[ array ] -> array
17881787
* Dir[ string [, string ...] ] -> array
17891788
*
17901789
* Equivalent to calling
1791-
* <code>Dir.glob(</code><i>array,</i><code>0)</code> and
17921790
* <code>Dir.glob([</code><i>string,...</i><code>],0)</code>.
17931791
*
17941792
*/

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#define RUBY_VERSION "2.1.4"
22
#define RUBY_RELEASE_DATE "2014-10-15"
3-
#define RUBY_PATCHLEVEL 249
3+
#define RUBY_PATCHLEVEL 250
44

55
#define RUBY_RELEASE_YEAR 2014
66
#define RUBY_RELEASE_MONTH 10

0 commit comments

Comments
 (0)