diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | complex.c | 21 | ||||
-rw-r--r-- | rational.c | 2 |
3 files changed, 17 insertions, 10 deletions
@@ -1,3 +1,7 @@ +Sun Sep 14 18:33:32 2008 Tadayoshi Funaba <[email protected]> + + * complex.c: trivial changes. + Sun Sep 14 16:15:22 2008 Yuki Sonoda (Yugui) <[email protected]> * lib/matrix.rb (Vector#eql?): typo of the method name as "eqn?". @@ -377,13 +377,15 @@ nucomp_s_canonicalize(int argc, VALUE *argv, VALUE klass) switch (rb_scan_args(argc, argv, "11", &real, &image)) { case 1: + nucomp_real_check(real); image = ZERO; break; + default: + nucomp_real_check(real); + nucomp_real_check(image); + break; } - nucomp_real_check(real); - nucomp_real_check(image); - return nucomp_s_canonicalize_internal(klass, real, image); } #endif @@ -395,13 +397,15 @@ nucomp_s_new(int argc, VALUE *argv, VALUE klass) switch (rb_scan_args(argc, argv, "11", &real, &image)) { case 1: + nucomp_real_check(real); image = ZERO; break; + default: + nucomp_real_check(real); + nucomp_real_check(image); + break; } - nucomp_real_check(real); - nucomp_real_check(image); - return nucomp_s_canonicalize_internal(klass, real, image); } @@ -1125,9 +1129,8 @@ string_to_c_internal(VALUE self) } if (NIL_P(m)) { m = f_match(comp_pat2, s); - if (NIL_P(m)) { + if (NIL_P(m)) return rb_assoc_new(Qnil, self); - } sr = f_aref(m, INT2FIX(1)); if (NIL_P(f_aref(m, INT2FIX(2)))) si = Qnil; @@ -1495,5 +1498,5 @@ Init_Complex(void) /* Local variables: c-file-style: "ruby" -end: +End: */ diff --git a/rational.c b/rational.c index 4e0c5a12ab..c4411d4425 100644 --- a/rational.c +++ b/rational.c @@ -1596,5 +1596,5 @@ Init_Rational(void) /* Local variables: c-file-style: "ruby" -end: +End: */ |