From 1d1cf2bf140e36ed185e4bce4d08ec20c420a3de Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Sat, 28 Sep 1996 02:02:40 +0000 Subject: [PATCH] . --- libguile/throw.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libguile/throw.c b/libguile/throw.c index 4bbbaaaca..01cd99f89 100644 --- a/libguile/throw.c +++ b/libguile/throw.c @@ -195,9 +195,9 @@ scm_catch (tag, thunk, handler) of a read-eval-print loop. 3) Given that we shouldn't do anything complex, it's much more robust to do it in C code. */ -static SCM unhandled_throw SCM_P ((SCM key, SCM args)); +static SCM uncaught_throw SCM_P ((SCM key, SCM args)); static SCM -unhandled_throw (key, args) +uncaught_throw (key, args) SCM key; SCM args; { @@ -265,7 +265,7 @@ scm_ithrow (key, args, noreturn) /* If we didn't find anything, print a message and exit Guile. */ if (SCM_IMP (winds) || SCM_NCONSP (winds)) - unhandled_throw (key, args); + uncaught_throw (key, args); if (dynpair != SCM_BOOL_F) jmpbuf = SCM_CDR (dynpair);