diff options
author | Andy Wingo <wingo@pobox.com> | 2013-11-27 22:03:58 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-11-27 22:03:58 +0100 |
commit | f689dd6982697f592b0dd5e63dc87e516657fb25 (patch) | |
tree | db0b5079c1b0e5a1eaf6762b53bb3bd163beffab /libguile/vm-engine.c | |
parent | 36cc0b901c57947b62118d50ab3152b65d0652f9 (diff) | |
download | guile-f689dd6982697f592b0dd5e63dc87e516657fb25.tar.gz |
Remove the restore-continuation-hook.
* libguile/vm.h:
* libguile/vm.c:
* libguile/vm-engine.c:
* module/system/vm/traps.scm:
* module/system/vm/vm.scm: Remove the unused and redundant
restore-continuation-hook.
Diffstat (limited to 'libguile/vm-engine.c')
-rw-r--r-- | libguile/vm-engine.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libguile/vm-engine.c b/libguile/vm-engine.c index 4ae2aa728..68a8b12aa 100644 --- a/libguile/vm-engine.c +++ b/libguile/vm-engine.c @@ -125,8 +125,6 @@ RUN_HOOK0 (next) #define ABORT_CONTINUATION_HOOK() \ RUN_HOOK0 (abort) -#define RESTORE_CONTINUATION_HOOK() \ - RUN_HOOK0 (restore_continuation) #define VM_HANDLE_INTERRUPTS \ SCM_ASYNC_TICK_WITH_GUARD_CODE (current_thread, SYNC_IP (), CACHE_FP ()) @@ -3228,7 +3226,6 @@ VM_NAME (scm_i_thread *current_thread, struct scm_vm *vp, #undef NEXT_JUMP #undef POP_CONTINUATION_HOOK #undef PUSH_CONTINUATION_HOOK -#undef RESTORE_CONTINUATION_HOOK #undef RETURN #undef RETURN_ONE_VALUE #undef RETURN_VALUE_LIST |