1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-12 06:41:13 +02:00

* Correct docstring for `throw'.

This commit is contained in:
Neil Jerram 2001-04-22 22:16:07 +00:00
parent 67835dabdb
commit 1f7f9ed41d
2 changed files with 5 additions and 1 deletions

View file

@ -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> 2001-04-22 Gary Houston <ghouston@arglist.com>
* socket.c: attempted to improve the docstrings slightly. * socket.c: attempted to improve the docstrings slightly.

View file

@ -592,7 +592,7 @@ SCM_DEFINE (scm_throw, "throw", 1, 0, 1,
"@var{handler}. \n\n" "@var{handler}. \n\n"
"@var{key} is a symbol. It will match catches of the same symbol or of\n" "@var{key} is a symbol. It will match catches of the same symbol or of\n"
"#t.\n\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 #define FUNC_NAME s_scm_throw
{ {
SCM_VALIDATE_SYMBOL (1,key); SCM_VALIDATE_SYMBOL (1,key);