parse.y: no dup US-ASCII string

* parse.y (rb_str_dynamic_intern): no needs to associate encoding
  if it is US-ASCII.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45430 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-03-26 06:34:31 +00:00
Родитель e70b61d010
Коммит 9a848c5f4a
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -10672,7 +10672,7 @@ rb_str_dynamic_intern(VALUE s)
#if USE_SYMBOL_GC
VALUE str = RB_GC_GUARD(s);
VALUE dup;
rb_encoding *enc;
rb_encoding *enc, *ascii;
VALUE dsym;
ID id, type;
@ -10682,9 +10682,10 @@ rb_str_dynamic_intern(VALUE s)
dup = rb_str_dup(str);
enc = rb_enc_get(str);
if (rb_enc_asciicompat(enc)) {
ascii = rb_usascii_encoding();
if (enc != ascii) {
if (sym_check_asciionly(str)) {
rb_enc_associate(dup, rb_usascii_encoding());
rb_enc_associate(dup, ascii);
}
}