Skip to content

Commit e598998

Browse files
committed
merge revision(s) 39733: [Backport ruby#8527]
* insns.def: fix condition. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@41321 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 9fb5a1c commit e598998

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Sun Jun 16 01:32:26 2013 TAKANO Mitsuhiro <[email protected]>
2+
3+
* insns.def: fix condition.
4+
15
Sun Jun 16 01:22:35 2013 Eric Hodel <[email protected]>
26

37
* ext/socket/extconf.rb: Enable RFC 3542 IPV6 socket options for OS X

insns.def

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -866,7 +866,7 @@ trace
866866
}
867867

868868
EXEC_EVENT_HOOK(th, flag, GET_SELF(), 0, 0 /* id and klass are resolved at callee */,
869-
(flag & RUBY_EVENT_RETURN | RUBY_EVENT_B_RETURN) ? TOPN(0) : Qundef);
869+
(flag & (RUBY_EVENT_RETURN | RUBY_EVENT_B_RETURN)) ? TOPN(0) : Qundef);
870870
}
871871

872872
/**********************************************************/

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.0.0"
22
#define RUBY_RELEASE_DATE "2013-06-16"
3-
#define RUBY_PATCHLEVEL 220
3+
#define RUBY_PATCHLEVEL 221
44

55
#define RUBY_RELEASE_YEAR 2013
66
#define RUBY_RELEASE_MONTH 6

0 commit comments

Comments
 (0)