diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2018-04-18 06:59:52 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2018-04-18 06:59:52 -0700 |
commit | 34791cb5f9f0eb75d7e0ad6024e254e82daa923c (patch) | |
tree | 9354265b91d5f3ff58a18a0e80e48ba95f0cf103 /vm.c | |
parent | ea0fa417084012b1c44d3325e8fa0dbd47106952 (diff) | |
download | txr-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |