From 34791cb5f9f0eb75d7e0ad6024e254e82daa923c Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Wed, 18 Apr 2018 06:59:52 -0700 Subject: 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. --- vm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm.c') 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); } -- cgit v1.2.3