diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2001-04-22 22:16:07 +0000 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2001-04-22 22:16:07 +0000 |
commit | 1f7f9ed41d855099432fa6338d8e6a535dac41b3 (patch) | |
tree | 032434f6ed89256c2a3fa91f6733fa6e7df388af | |
parent | 67835dabdb179760a4feb6e4019385a0daa51cdf (diff) | |
download | guile-1f7f9ed41d855099432fa6338d8e6a535dac41b3.tar.gz |
* Correct docstring for `throw'.
-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); |