guile-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile/guile-core/libguile ChangeLog throw.c


From: Neil Jerram
Subject: guile/guile-core/libguile ChangeLog throw.c
Date: Sat, 19 May 2001 04:18:03 -0700

CVSROOT:        /cvs
Module name:    guile
Changes by:     Neil Jerram <address@hidden>    01/05/19 04:18:03

Modified files:
        guile-core/libguile: ChangeLog throw.c 

Log message:
        * Slight clarification of lazy-catch docstring.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/libguile/ChangeLog.diff?cvsroot=OldCVS&tr1=1.1400&tr2=1.1401&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/libguile/throw.c.diff?cvsroot=OldCVS&tr1=1.82&tr2=1.83&r1=text&r2=text

Patches:
Index: guile/guile-core/libguile/ChangeLog
diff -u guile/guile-core/libguile/ChangeLog:1.1400 
guile/guile-core/libguile/ChangeLog:1.1401
--- guile/guile-core/libguile/ChangeLog:1.1400  Fri May 18 19:01:33 2001
+++ guile/guile-core/libguile/ChangeLog Sat May 19 04:18:02 2001
@@ -1,3 +1,7 @@
+2001-05-19  Neil Jerram  <address@hidden>
+
+       * throw.c (scm_lazy_catch): Slight docstring clarification.
+
 2001-05-19  Marius Vollmer  <address@hidden>
 
        * throw.c: Lazy-catch handlers are no longer allowed to return.
Index: guile/guile-core/libguile/throw.c
diff -u guile/guile-core/libguile/throw.c:1.82 
guile/guile-core/libguile/throw.c:1.83
--- guile/guile-core/libguile/throw.c:1.82      Fri May 18 19:01:12 2001
+++ guile/guile-core/libguile/throw.c   Sat May 19 04:18:02 2001
@@ -558,9 +558,9 @@
 SCM_DEFINE (scm_lazy_catch, "lazy-catch", 3, 0, 0,
            (SCM key, SCM thunk, SCM handler),
            "This behaves exactly like @code{catch}, except that it does\n"
-           "not unwind the stack.  The @var{handler} procedure is not "
-           "allowed to return, it must throw to another catch, or "
-           "otherwise exit non-locally.")
+           "not unwind the stack before invoking @var{handler}.\n"
+           "The @var{handler} procedure is not allowed to return:\n"
+           "it must throw to another catch, or otherwise exit non-locally.")
 #define FUNC_NAME s_scm_lazy_catch
 {
   struct scm_body_thunk_data c;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]