projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b0b11d5
)
Fix check for arity of hash: must be binary, not unary.
author
Taylor R Campbell
<campbell@mumble.net>
Wed, 29 May 2019 04:11:52 +0000
(
04:11
+0000)
committer
Taylor R Campbell
<campbell@mumble.net>
Wed, 29 May 2019 05:00:39 +0000
(
05:00
+0000)
src/runtime/hash-table.scm
patch
|
blob
|
history
diff --git
a/src/runtime/hash-table.scm
b/src/runtime/hash-table.scm
index 967a3a87dfb30953f290cecc1211dcf25db97861..696e7c67cf71da8165d8628b0de581e29536ceb6 100644
(file)
--- a/
src/runtime/hash-table.scm
+++ b/
src/runtime/hash-table.scm
@@
-1050,7
+1050,7
@@
USA.
(define-deferred hash-table-type-options
(keyword-option-parser
- (list (list 'hash-function
u
nary-procedure? default-object)
+ (list (list 'hash-function
bi
nary-procedure? default-object)
(list 'rehash-after-gc? boolean? default-object)
(list 'entry-type entry-type-name? (lambda () 'strong)))))