1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* encoding.c (rb_enc_unicode_p): check the encoding is Unicode

or not by the name; not function's pointer. [ruby-dev:41479]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28103 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2010-05-31 05:46:58 +00:00
parent b5cd43c998
commit d13e191d25
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Mon May 31 13:44:40 2010 NARUSE, Yui <naruse@ruby-lang.org>
* encoding.c (rb_enc_unicode_p): check the encoding is Unicode
or not by the name; not function's pointer. [ruby-dev:41479]
Mon May 31 04:03:43 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* file.c (file_expand_path): check if expanded dname encoding is

View file

@ -420,7 +420,8 @@ enc_ascii_compatible_p(VALUE enc)
int
rb_enc_unicode_p(rb_encoding *enc)
{
return rb_utf8_encoding()->is_code_ctype == enc->is_code_ctype;
const char *name = rb_enc_name(enc);
return name[0] == 'U' && name[1] == 'T' && name[2] == 'F' && name[4] != '7';
}
static const char *