summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2004-02-14 23:02:32 +0000
committerKevin Ryde <user42@zip.com.au>2004-02-14 23:02:32 +0000
commit0c7d588a7a9fd6407124fdf54f28760063c94ef2 (patch)
tree25bd07c3be2fc4b5dd886e842c4e6902d8be3b5f
parent711a9fd7ee82610f160c042141d6a34e041ea804 (diff)
downloadguile-0c7d588a7a9fd6407124fdf54f28760063c94ef2.tar.gz
(Hash Table Reference): In scm_hash_ref etc,
remove note that dflt must be given, it can be SCM_UNSPECIFIED.
-rw-r--r--doc/ref/scheme-compound.texi3
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/ref/scheme-compound.texi b/doc/ref/scheme-compound.texi
index f4406a8e4..49dd5d939 100644
--- a/doc/ref/scheme-compound.texi
+++ b/doc/ref/scheme-compound.texi
@@ -2401,8 +2401,7 @@ added.
@deffnx {C Function} scm_hashx_ref (hash, assoc, table, key, dflt)
Lookup @var{key} in the given hash @var{table}, and return the
associated value. If @var{key} is not found, return @var{dflt}, or
-@code{#f} if @var{dflt} is not given. (For the C functions,
-@var{dflt} must be given.)
+@code{#f} if @var{dflt} is not given.
@end deffn
@deffn {Scheme Procedure} hash-set! table key val