summaryrefslogtreecommitdiffstats
path: root/vm.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 /vm.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 'vm.c')
-rw-r--r--vm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm.c b/vm.c
index c0370343..f2dc3bd7 100644
--- a/vm.c
+++ b/vm.c
@@ -539,7 +539,7 @@ static void vm_gapply(struct vm *vm, vm_word_t insn)
}
}
- result = apply_intrinsic(deref(vm_ftab(vm, fun)), args_get_list(args));
+ result = applyv(deref(vm_ftab(vm, fun)), args);
vm_set(vm->dspl, dest, result);
}