aboutsummaryrefslogtreecommitdiffstats
path: root/NEWS
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-09 17:02:02 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-09 17:02:02 +0000
commit6fb2ec53949c149323d2b0f264bf4c68be558b8f (patch)
tree74e9c8645f64bcb766785a7dbaa60afb93de3199 /NEWS
parentc7e51700ca5060a7d4fbc9f8cd99f8471b5f0935 (diff)
downloadruby-6fb2ec53949c149323d2b0f264bf4c68be558b8f.tar.gz
* compile.c (iseq_compile_each): do not add debug information
without --debug or --debug=frozen-string-literal option because String#dup slows down with debug information. [Feature #11725] * NEWS: apply about it. * test/ruby/test_rubyoptions.rb: catch up this fix with refactoring. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53009 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS5
1 files changed, 2 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 597818d99b..eccd1be06c 100644
--- a/NEWS
+++ b/NEWS
@@ -19,10 +19,9 @@ with all sufficient information, see the ChangeLog file.
[Feature #8976]
* besides, --enable/--disable=frozen-string-literal options also have
been introduced. [Feature #8976]
- * command line option --debug or --debug=frozen-string-literal enable
+ * command line options --debug or --debug=frozen-string-literal enable
additional debugging mode which shows created location with at frozen
- object error (RuntimeError) even if string is dynamically created string
- literal (for static string literals shows locations as default).
+ object error (RuntimeError).
[Feature #11725]
* safe navigation operator: