mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* fix missing STR_ENC_GET.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15578 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
70eea8fd26
commit
7b218308e0
1 changed files with 1 additions and 1 deletions
2
string.c
2
string.c
|
@ -220,7 +220,7 @@ rb_enc_cr_str_copy(VALUE dest, VALUE src)
|
|||
ENC_CODERANGE_SET(dest, ENC_CODERANGE_7BIT);
|
||||
break;
|
||||
case ENC_CODERANGE_VALID:
|
||||
if (!rb_enc_asciicompat(enc) ||
|
||||
if (!rb_enc_asciicompat(STR_ENC_GET(src)) ||
|
||||
search_nonascii(RSTRING_PTR(dest), RSTRING_END(dest)))
|
||||
ENC_CODERANGE_SET(dest, ENC_CODERANGE_VALID);
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue