From 0ca24570bb9bee8460cd14afd00fbef8b7493498 Mon Sep 17 00:00:00 2001 From: yugui Date: Tue, 16 Dec 2008 10:25:34 +0000 Subject: merges r20715 from trunk into ruby_1_9_1. * complex.c: use rb_usascii_str_new2 instead of rb_str_new2. * rational.c: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@20787 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- rational.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rational.c') diff --git a/rational.c b/rational.c index 4b6e2ea0c..ba41413cb 100644 --- a/rational.c +++ b/rational.c @@ -1135,7 +1135,7 @@ nurat_inspect(VALUE self) { VALUE s; - s = rb_str_new2("("); + s = rb_usascii_str_new2("("); rb_str_concat(s, nurat_format(self, f_inspect)); rb_str_cat2(s, ")"); @@ -1289,7 +1289,7 @@ make_patterns(void) sizeof underscores_pat_source - 1, 0); rb_gc_register_mark_object(underscores_pat); - an_underscore = rb_str_new2("_"); + an_underscore = rb_usascii_str_new2("_"); rb_gc_register_mark_object(an_underscore); } @@ -1368,7 +1368,7 @@ string_to_r_internal(VALUE self) v = f_mul(v, f_expt(INT2FIX(10), f_to_i(exp))); #if 0 if (!NIL_P(de) && (!NIL_P(fp) || !NIL_P(exp))) - return rb_assoc_new(v, rb_str_new2("dummy")); + return rb_assoc_new(v, rb_usascii_str_new2("dummy")); #endif if (!NIL_P(de)) v = f_div(v, f_to_i(de)); -- cgit