Skip to content

Commit f73e2f5

Browse files
committed
merge revision(s) 54021: [Backport ruby#11891]
* ext/tk/lib/tkextlib/tcllib/toolbar.rb: fix method name typo. [ruby-core:72511] [Bug ruby#11891] The patch provided by Akira Matsuda. [ruby-core:72510] [Bug ruby#11890] The patch provided by Akira Matsuda. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@54280 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 5464a94 commit f73e2f5

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

ChangeLog

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1+
Fri Mar 25 18:34:20 2016 CHIKANAGA Tomoyuki <nagachika@ruby-lang.org>
2+
3+
* ext/tk/lib/tkextlib/tcllib/toolbar.rb: fix method name typo.
4+
[ruby-core:72511] [Bug #11891] The patch provided by Akira Matsuda.
5+
6+
17
Fri Mar 25 18:33:34 2016 CHIKANAGA Tomoyuki <nagachika@ruby-lang.org>
28

39
* ext/tk/lib/tkextlib/blt/tree.rb: fix method name typo.
4-
[ruby-core:72510] [Bug #11890] The patch provided by Akira Matsuda.
10+
[ruby-core:72510] [Bug #11890] The patch provided by Akira Matsuda.
511

612

713
Fri Mar 25 18:32:44 2016 CHIKANAGA Tomoyuki <nagachika@ruby-lang.org>

ext/tk/lib/tkextlib/tcllib/toolbar.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def ToolbarItem.id2obj(tbar, id)
5656
}
5757
end
5858

59-
def initaialize(parent, *args)
59+
def initialize(parent, *args)
6060
@parent = @t = parent
6161
@tpath = parent.path
6262

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.9"
22
#define RUBY_RELEASE_DATE "2016-03-25"
3-
#define RUBY_PATCHLEVEL 477
3+
#define RUBY_PATCHLEVEL 478
44

55
#define RUBY_RELEASE_YEAR 2016
66
#define RUBY_RELEASE_MONTH 3

0 commit comments

Comments
 (0)