1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

(scm_lazy_catch): Added docstring.

This commit is contained in:
Martin Grabmüller 2001-02-16 15:10:12 +00:00
parent 8cf97abf91
commit 0b3e0adb05

View file

@ -551,7 +551,9 @@ SCM_DEFINE (scm_catch, "catch", 3, 0, 0,
SCM_DEFINE (scm_lazy_catch, "lazy-catch", 3, 0, 0,
(SCM tag, SCM thunk, SCM handler),
"")
"This behaves exactly like @code{catch}, except that it does\n"
"not unwind the stack (this is the major difference), and if\n"
"handler returns, its value is returned from the throw.")
#define FUNC_NAME s_scm_lazy_catch
{
struct scm_body_thunk_data c;