diff options
-rw-r--r-- | libguile/ChangeLog | 4 | ||||
-rw-r--r-- | libguile/throw.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libguile/ChangeLog b/libguile/ChangeLog index c463b5a44..d7708ceac 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,7 @@ +2001-04-22 Neil Jerram <neil@ossau.uklinux.net> + + * throw.c (scm_throw): Correct docstring. + 2001-04-22 Gary Houston <ghouston@arglist.com> * socket.c: attempted to improve the docstrings slightly. diff --git a/libguile/throw.c b/libguile/throw.c index fce8d8e0f..a4e610b7b 100644 --- a/libguile/throw.c +++ b/libguile/throw.c @@ -592,7 +592,7 @@ SCM_DEFINE (scm_throw, "throw", 1, 0, 1, "@var{handler}. \n\n" "@var{key} is a symbol. It will match catches of the same symbol or of\n" "#t.\n\n" - "If there is no handler at all, an error is signaled.") + "If there is no handler at all, Guile prints an error and then exits.") #define FUNC_NAME s_scm_throw { SCM_VALIDATE_SYMBOL (1,key); |