summaryrefslogtreecommitdiffstats
path: root/arith.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-07-20 09:07:20 -0700
committerKaz Kylheku <kaz@kylheku.com>2014-07-20 09:07:20 -0700
commit7da23010b2afbaae4dc4b8f01d1f8950e2c878be (patch)
tree8d11d7966345d4c4c93ea2b201ef0b5d98728f35 /arith.c
parente4caf8527d35df820c602b4e75a810f43082e39e (diff)
downloadtxr-7da23010b2afbaae4dc4b8f01d1f8950e2c878be.tar.gz
txr-7da23010b2afbaae4dc4b8f01d1f8950e2c878be.tar.bz2
txr-7da23010b2afbaae4dc4b8f01d1f8950e2c878be.zip
* arith.c (divi): Support one-argument form.
Use "/" name in error reporting, not "divi". * eval.c (eval_init): Change registration of / so only one argument is required out of two. * txr.1: Document one-argument division.
Diffstat (limited to 'arith.c')
-rw-r--r--arith.c17
1 files changed, 12 insertions, 5 deletions
diff --git a/arith.c b/arith.c
index 14d3d0e2..7051ddb8 100644
--- a/arith.c
+++ b/arith.c
@@ -946,13 +946,20 @@ static val to_float(val func, val num)
val divi(val anum, val bnum)
{
- double a = c_flo(to_float(lit("divi"), anum));
- double b = c_flo(to_float(lit("divi"), bnum));
+ if (missingp(bnum)) {
+ double b = c_flo(to_float(lit("/"), anum));
+ if (b == 0.0)
+ uw_throw(numeric_error_s, lit("/: division by zero"));
+ return flo(1.0 / b);
+ } else {
+ double a = c_flo(to_float(lit("/"), anum));
+ double b = c_flo(to_float(lit("/"), bnum));
- if (b == 0.0)
- uw_throw(numeric_error_s, lit("divi: division by zero"));
+ if (b == 0.0)
+ uw_throw(numeric_error_s, lit("/: division by zero"));
- return flo(a / b);
+ return flo(a / b);
+ }
}
val zerop(val num)