aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-02 12:04:04 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-02 12:04:04 +0000
commitb1520b7459d7c34ea9e4d6dc8bab615c1430d98d (patch)
treec7a7f6dc5acaf9d34208f443900ad1fe78a7e3ce /ChangeLog
parent3fb8542b626128c2d15308fc6cb86792c01bac42 (diff)
downloadruby-b1520b7459d7c34ea9e4d6dc8bab615c1430d98d.tar.gz
parse.y: fix wrong static symbol
* parse.y (next_id): no reason to set ID_STATIC_SYM here, as ID returned by rb_intern3 can be a dynamic symbol and the static symbol flag is set otherwise. [Bug #9787] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45788 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 166a300834..61e1572f70 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri May 2 21:04:02 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * parse.y (next_id): no reason to set ID_STATIC_SYM here, as ID
+ returned by rb_intern3 can be a dynamic symbol and the static
+ symbol flag is set otherwise. [Bug #9787]
+
Fri May 2 11:32:51 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
* test/ruby/test_io.rb (test_seek, test_seek_symwhence): defer