diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-02-25 22:00:50 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-02-25 22:00:50 -0800 |
commit | 0f32fe85728e4ee35a25094d99bdf7b3ff1630a7 (patch) | |
tree | 568160ac3679e3cc202b28bf2fd262786187871f /eval.c | |
parent | 56f0df1ea9282f1c050e23c78fed47f321ff8d06 (diff) | |
download | txr-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); |