diff options
Diffstat (limited to 'libguile/throw.c')
-rw-r--r-- | libguile/throw.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libguile/throw.c b/libguile/throw.c index 8664bee74..bd15f2a09 100644 --- a/libguile/throw.c +++ b/libguile/throw.c @@ -548,6 +548,17 @@ scm_handle_by_message_noexit (handler_data, tag, args) } +SCM +scm_handle_by_throw (handler_data, tag, args) + void *handler_data; + SCM tag; + SCM args; +{ + scm_ithrow (tag, args, 1); + return SCM_UNSPECIFIED; /* never returns */ +} + + /* the Scheme-visible CATCH and LAZY-CATCH functions */ |