summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2017-02-25 22:00:50 -0800
committerKaz Kylheku <kaz@kylheku.com>2017-02-25 22:00:50 -0800
commit0f32fe85728e4ee35a25094d99bdf7b3ff1630a7 (patch)
tree568160ac3679e3cc202b28bf2fd262786187871f /eval.c
parent56f0df1ea9282f1c050e23c78fed47f321ff8d06 (diff)
downloadtxr-0f32fe85728e4ee35a25094d99bdf7b3ff1630a7.tar.gz
txr-0f32fe85728e4ee35a25094d99bdf7b3ff1630a7.tar.bz2
txr-0f32fe85728e4ee35a25094d99bdf7b3ff1630a7.zip
Second argument optional in trunc.
* arith.c (trunc1): New static function. (trunc): Detect a missing second argument and call func1. * eval.c (eval_init): Update registration of trunc intrinsic to make second arg optional. * txr.1: Describe optional argument of trunc. Trunc documentation is merged with the floor, ceil and round section. The mod and trunc-rem functions are split off into their own sections, leaving the / function described by itself. The documentation of / is substantially revised.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 0312292a..bc58d303 100644
--- a/eval.c
+++ b/eval.c
@@ -5691,7 +5691,7 @@ void eval_init(void)
reg_fun(intern(lit("-"), user_package), func_n1v(minusv));
reg_fun(intern(lit("*"), user_package), func_n0v(mulv));
reg_fun(intern(lit("abs"), user_package), func_n1(abso));
- reg_fun(intern(lit("trunc"), user_package), func_n2(trunc));
+ reg_fun(intern(lit("trunc"), user_package), func_n2o(trunc, 1));
reg_fun(intern(lit("mod"), user_package), func_n2(mod));
reg_fun(intern(lit("trunc-rem"), user_package), func_n2(trunc_rem));
reg_fun(intern(lit("wrap"), user_package), func_n3(wrap));