summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Jerram <neil@ossau.uklinux.net>2001-04-22 22:16:07 +0000
committerNeil Jerram <neil@ossau.uklinux.net>2001-04-22 22:16:07 +0000
commit1f7f9ed41d855099432fa6338d8e6a535dac41b3 (patch)
tree032434f6ed89256c2a3fa91f6733fa6e7df388af
parent67835dabdb179760a4feb6e4019385a0daa51cdf (diff)
downloadguile-1f7f9ed41d855099432fa6338d8e6a535dac41b3.tar.gz
* Correct docstring for `throw'.
-rw-r--r--libguile/ChangeLog4
-rw-r--r--libguile/throw.c2
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);