* string.c (rb_str_inspect): string of ascii incompatible encoding
should be escaped and returned as US-ASCII encoding. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15572 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
7a9cf391cd
commit
a532dcafe6
@ -1,3 +1,8 @@
|
|||||||
|
Fri Feb 22 12:11:12 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
|
* string.c (rb_str_inspect): string of ascii incompatible encoding
|
||||||
|
should be escaped and returned as US-ASCII encoding.
|
||||||
|
|
||||||
Fri Feb 22 11:16:55 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
Fri Feb 22 11:16:55 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* string.c (rb_str_substr): copy encoding although empty string.
|
* string.c (rb_str_substr): copy encoding although empty string.
|
||||||
|
1
string.c
1
string.c
@ -3663,6 +3663,7 @@ rb_str_inspect(VALUE str)
|
|||||||
char *p, *pend;
|
char *p, *pend;
|
||||||
VALUE result = rb_str_buf_new2("");
|
VALUE result = rb_str_buf_new2("");
|
||||||
|
|
||||||
|
if (!rb_enc_asciicompat(enc)) enc = rb_usascii_encoding();
|
||||||
rb_enc_associate(result, enc);
|
rb_enc_associate(result, enc);
|
||||||
str_cat_char(result, '"', enc);
|
str_cat_char(result, '"', enc);
|
||||||
p = RSTRING_PTR(str); pend = RSTRING_END(str);
|
p = RSTRING_PTR(str); pend = RSTRING_END(str);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user