diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2003-04-26 15:02:56 +0000 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2003-04-26 15:02:56 +0000 |
commit | a95dbade592cc32e9354e761e677fcef9dcc0f43 (patch) | |
tree | e70c841a53b32464ee495f3f2a57e267f638eb9a /doc/ref/scheme-control.texi | |
parent | 56b97da98796fa41ff6e040c22884465c33c3db3 (diff) | |
download | guile-a95dbade592cc32e9354e761e677fcef9dcc0f43.tar.gz |
scm_sysmissing doc fix from Kevin Ryde.
Diffstat (limited to 'doc/ref/scheme-control.texi')
-rw-r--r-- | doc/ref/scheme-control.texi | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/doc/ref/scheme-control.texi b/doc/ref/scheme-control.texi index 184ccae9d..a2df95d68 100644 --- a/doc/ref/scheme-control.texi +++ b/doc/ref/scheme-control.texi @@ -943,8 +943,7 @@ Likewise a NULL message is converted to #f. The following procedures invoke scm_error with various error keys and arguments. The first three call scm_error with the system-error key and automatically supply errno in the "rest" argument: scm_syserror -generates messages using strerror, scm_sysmissing is used when -facilities are not available. Care should be taken that the errno +generates messages using strerror. Care should be taken that the errno value is not reset (e.g. due to an interrupt). @itemize @bullet @@ -953,8 +952,6 @@ void scm_syserror (char *subr); @item void scm_syserror_msg (char *subr, char *message, SCM args); @item -void scm_sysmissing (char *subr); -@item void scm_num_overflow (char *subr); @item void scm_out_of_range (char *subr, SCM bad_value); |