diff options
Diffstat (limited to 'libguile/throw.c')
-rw-r--r-- | libguile/throw.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libguile/throw.c b/libguile/throw.c index ba2185f7b..0fa41a83d 100644 --- a/libguile/throw.c +++ b/libguile/throw.c @@ -526,7 +526,7 @@ scm_handle_by_throw (void *handler_data, SCM tag, SCM args) /* the Scheme-visible CATCH and LAZY-CATCH functions */ -SCM_DEFINE(scm_catch, "catch", 3, 0, 0, +SCM_DEFINE (scm_catch, "catch", 3, 0, 0, (SCM tag, SCM thunk, SCM handler), "Invoke @var{thunk} in the dynamic context of @var{handler} for exceptions matching @var{key}. If thunk throws to the symbol @var{key}, @@ -569,7 +569,7 @@ this call to @code{catch}.") #undef FUNC_NAME -SCM_DEFINE(scm_lazy_catch, "lazy-catch", 3, 0, 0, +SCM_DEFINE (scm_lazy_catch, "lazy-catch", 3, 0, 0, (SCM tag, SCM thunk, SCM handler), "") #define FUNC_NAME s_scm_lazy_catch @@ -598,7 +598,7 @@ SCM_DEFINE(scm_lazy_catch, "lazy-catch", 3, 0, 0, /* throwing */ -SCM_DEFINE(scm_throw, "throw", 1, 0, 1, +SCM_DEFINE (scm_throw, "throw", 1, 0, 1, (SCM key, SCM args), "Invoke the catch form matching @var{key}, passing @var{args} to the @var{handler}. @@ -609,7 +609,7 @@ SCM_DEFINE(scm_throw, "throw", 1, 0, 1, If there is no handler at all, an error is signaled.") #define FUNC_NAME s_scm_throw { - SCM_VALIDATE_SYMBOL(1,key); + SCM_VALIDATE_SYMBOL (1,key); /* May return if handled by lazy catch. */ return scm_ithrow (key, args, 1); } |