aboutsummaryrefslogtreecommitdiffstats
path: root/complex.c
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-18 00:35:06 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-18 00:35:06 +0000
commit42d38decda9249ba77b365f2b242a76e7e109945 (patch)
treea230abe95a8f2dbc8b889de4b867cc7aae5dec0d /complex.c
parent7a1985a96970f7e759b945be74e7a8f41a797cd8 (diff)
downloadruby-42d38decda9249ba77b365f2b242a76e7e109945.tar.gz
* complex.c (read_comp): mathn compliant.
* rational.c (read_num): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37708 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'complex.c')
-rw-r--r--complex.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/complex.c b/complex.c
index e073acf7cc..d4af405a88 100644
--- a/complex.c
+++ b/complex.c
@@ -1646,14 +1646,14 @@ read_comp(const char **s, int strict,
if (isimagunit(**s)) {
(*s)++;
num = INT2FIX((sign == '-') ? -1 : + 1);
- *ret = rb_complex_raw2(ZERO, num);
+ *ret = rb_complex_new2(ZERO, num);
return 1; /* e.g. "i" */
}
if (!read_rat_nos(s, strict, b)) {
**b = '\0';
num = str2num(bb);
- *ret = rb_complex_raw2(num, ZERO);
+ *ret = rb_complex_new2(num, ZERO);
return 0; /* e.g. "1/" */
}
**b = '\0';
@@ -1661,7 +1661,7 @@ read_comp(const char **s, int strict,
if (isimagunit(**s)) {
(*s)++;
- *ret = rb_complex_raw2(ZERO, num);
+ *ret = rb_complex_new2(ZERO, num);
return 1; /* e.g. "3i" */
}
@@ -1674,7 +1674,7 @@ read_comp(const char **s, int strict,
**b = '\0';
if (strlen(bb) < 1 ||
!isdigit((unsigned char)*(bb + strlen(bb) - 1))) {
- *ret = rb_complex_raw2(num, ZERO);
+ *ret = rb_complex_new2(num, ZERO);
return 0; /* e.g. "1@x" */
}
num2 = str2num(bb);
@@ -1692,23 +1692,23 @@ read_comp(const char **s, int strict,
num2 = INT2FIX((sign == '-') ? -1 : + 1);
else {
if (!read_rat_nos(s, strict, b)) {
- *ret = rb_complex_raw2(num, ZERO);
+ *ret = rb_complex_new2(num, ZERO);
return 0; /* e.g. "1+xi" */
}
**b = '\0';
num2 = str2num(bb);
}
if (!isimagunit(**s)) {
- *ret = rb_complex_raw2(num, ZERO);
+ *ret = rb_complex_new2(num, ZERO);
return 0; /* e.g. "1+3x" */
}
(*s)++;
- *ret = rb_complex_raw2(num, num2);
+ *ret = rb_complex_new2(num, num2);
return 1; /* e.g. "1+2i" */
}
/* !(@, - or +) */
{
- *ret = rb_complex_raw2(num, ZERO);
+ *ret = rb_complex_new2(num, ZERO);
return 1; /* e.g. "3" */
}
}