summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2018-04-18 06:42:25 -0700
committerKaz Kylheku <kaz@kylheku.com>2018-04-18 06:42:25 -0700
commit4a73b8e0cc47b93563c3f4ad935552adb2756411 (patch)
tree210de40395adbb643174123d15df2b8089570fa2 /eval.c
parent93cbd81f0fb5242bb93062848826bf5b6b5e9d46 (diff)
downloadtxr-4a73b8e0cc47b93563c3f4ad935552adb2756411.tar.gz
txr-4a73b8e0cc47b93563c3f4ad935552adb2756411.tar.bz2
txr-4a73b8e0cc47b93563c3f4ad935552adb2756411.zip
apply: diagnose missing argument.
The <trailing-args> argument is required in apply and iapply; and that is documented. * eval.c (apply_intrinsic_frob_args): Check for args being empty and throw.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index adff9db7..c98625a8 100644
--- a/eval.c
+++ b/eval.c
@@ -1122,7 +1122,9 @@ static val apply_frob_args(val args)
static val apply_intrinsic_frob_args(val args)
{
- if (!cdr(args)) {
+ if (!args) {
+ uw_throwf(error_s, lit("apply: trailing-args argument missing"), nao);
+ } if (!cdr(args)) {
return tolist(car(args));
} else {
list_collect_decl (out, ptail);