summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-10-11 05:35:37 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-10-11 05:35:37 +0000
commit19b38f83df6277124b73b6af2c68b83dfcd19b41 (patch)
tree8f2d2321f35eddbccf0fe0f6e843389ff0fbcc76 /NEWS
parent8c3af8ecc078704128cda961b5316162506e1eb1 (diff)
Ruby 2.4.0 will not have rb_cFixnum and rb_cBignum is removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56389 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS6
1 files changed, 2 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 571eb57a13..6f3c9f1aa2 100644
--- a/NEWS
+++ b/NEWS
@@ -181,10 +181,8 @@ with all sufficient information, see the ChangeLog file or Redmine
FIXNUM_P(obj) and RB_TYPE_P(obj, T_BIGNUM).
RUBY_INTEGER_UNIFICATION can be used to detect this feature at C-level.
0.class == Integer can be used to detect this feature at Ruby-level.
- ruby-2.4.0-preview1 (temporally) removes rb_cFixnum and rb_cBignum
- to check the effect of incompatibility.
- (rb_cFixnum and rb_cBignum may be defined as rb_cInteger later if
- compilation failure of extension library is too big problem.)
+ The C-level constants, rb_cFixnum and rb_cBignum, is removed.
+ They can cause compilation failure.
* String/Symbol#upcase/downcase/swapcase/capitalize(!) now work for all of
Unicode, not only for ASCII. [Feature #10085]