summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2018-04-18 06:59:52 -0700
committerKaz Kylheku <kaz@kylheku.com>2018-04-18 06:59:52 -0700
commit34791cb5f9f0eb75d7e0ad6024e254e82daa923c (patch)
tree9354265b91d5f3ff58a18a0e80e48ba95f0cf103 /eval.c
parentea0fa417084012b1c44d3325e8fa0dbd47106952 (diff)
downloadtxr-34791cb5f9f0eb75d7e0ad6024e254e82daa923c.tar.gz
txr-34791cb5f9f0eb75d7e0ad6024e254e82daa923c.tar.bz2
txr-34791cb5f9f0eb75d7e0ad6024e254e82daa923c.zip
apply: remove remaining apply_intrinsic uses.
* eval.c (apply_intrinsic): Function removed. (to_apf): Use applyv instead of apply_intrinsic. * eval.h (apply_intrinsic): Declaration removed. * vm.c (vm_gapply): Use applyv instead of apply_intrinsic.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/eval.c b/eval.c
index 1ff89af2..610c9b40 100644
--- a/eval.c
+++ b/eval.c
@@ -1137,11 +1137,6 @@ static val apply_intrinsic_frob_args(val args)
}
}
-val apply_intrinsic(val fun, val args)
-{
- return apply(fun, apply_intrinsic_frob_args(z(args)));
-}
-
val applyv(val fun, struct args *args)
{
args_normalize_least(args, 1);
@@ -5853,7 +5848,7 @@ val retf(val ret)
static val do_apf(val fun, struct args *args)
{
- return apply_intrinsic(fun, args_get_list(args));
+ return applyv(fun, args);
}
static val apf(val fun)