diff options
author | Andreas Rottmann <a.rottmann@gmx.at> | 2010-10-27 23:33:40 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2010-10-27 23:33:40 +0200 |
commit | 5efcd34d712497744c40dbce6aadfa73144dab4a (patch) | |
tree | 02e9864f0a5a4ce50477e6129427bc512d193837 /module/srfi | |
parent | dcb9aceb48a9c3181d6006e175e2e8728354c5aa (diff) | |
download | guile-5efcd34d712497744c40dbce6aadfa73144dab4a.tar.gz |
Extend the #:replace list of the SRFI 69 module
* module/srfi/srfi-69.scm: Add `make-hash-table' and `hash-table?' to
the #:replace list of the module definition.
Diffstat (limited to 'module/srfi')
-rw-r--r-- | module/srfi/srfi-69.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/srfi/srfi-69.scm b/module/srfi/srfi-69.scm index 0d835d09b..df07f7510 100644 --- a/module/srfi/srfi-69.scm +++ b/module/srfi/srfi-69.scm @@ -86,7 +86,7 @@ ;; Hashing string-ci-hash hash-by-identity) #:re-export (string-hash) - #:replace (hash)) + #:replace (hash make-hash-table hash-table?)) (cond-expand-provide (current-module) '(srfi-37)) |