mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* string.c (rb_usascii_str_new): use rb_str_new.
* string.c (rb_enc_str_new): ditto. * string.c (rb_usascii_str_new2): use rb_str_new2. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16500 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fe8bb86125
commit
102f94455c
2 changed files with 13 additions and 8 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
Wed May 21 07:42:28 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
|
* string.c (rb_usascii_str_new): use rb_str_new.
|
||||||
|
|
||||||
|
* string.c (rb_enc_str_new): ditto.
|
||||||
|
|
||||||
|
* string.c (rb_usascii_str_new2): use rb_str_new2.
|
||||||
|
|
||||||
Wed May 21 07:22:01 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
Wed May 21 07:22:01 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* encoding.c, include/ruby/encoding.h
|
* encoding.c, include/ruby/encoding.h
|
||||||
|
|
13
string.c
13
string.c
|
@ -385,8 +385,7 @@ rb_str_new(const char *ptr, long len)
|
||||||
VALUE
|
VALUE
|
||||||
rb_usascii_str_new(const char *ptr, long len)
|
rb_usascii_str_new(const char *ptr, long len)
|
||||||
{
|
{
|
||||||
VALUE str = str_new(rb_cString, ptr, len);
|
VALUE str = rb_str_new(ptr, len);
|
||||||
|
|
||||||
ENCODING_CODERANGE_SET(str, rb_usascii_encindex(), ENC_CODERANGE_7BIT);
|
ENCODING_CODERANGE_SET(str, rb_usascii_encindex(), ENC_CODERANGE_7BIT);
|
||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
@ -394,8 +393,7 @@ rb_usascii_str_new(const char *ptr, long len)
|
||||||
VALUE
|
VALUE
|
||||||
rb_enc_str_new(const char *ptr, long len, rb_encoding *enc)
|
rb_enc_str_new(const char *ptr, long len, rb_encoding *enc)
|
||||||
{
|
{
|
||||||
VALUE str = str_new(rb_cString, ptr, len);
|
VALUE str = rb_str_new(ptr, len);
|
||||||
|
|
||||||
rb_enc_associate(str, enc);
|
rb_enc_associate(str, enc);
|
||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
@ -412,10 +410,9 @@ rb_str_new2(const char *ptr)
|
||||||
VALUE
|
VALUE
|
||||||
rb_usascii_str_new2(const char *ptr)
|
rb_usascii_str_new2(const char *ptr)
|
||||||
{
|
{
|
||||||
if (!ptr) {
|
VALUE str = rb_str_new2(ptr);
|
||||||
rb_raise(rb_eArgError, "NULL pointer given");
|
ENCODING_CODERANGE_SET(str, rb_usascii_encindex(), ENC_CODERANGE_7BIT);
|
||||||
}
|
return str;
|
||||||
return rb_usascii_str_new(ptr, strlen(ptr));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
VALUE
|
VALUE
|
||||||
|
|
Loading…
Reference in a new issue