diff --git a/core/hashtables/hashtables.factor b/core/hashtables/hashtables.factor index d51ed90300..0244d5899c 100644 --- a/core/hashtables/hashtables.factor +++ b/core/hashtables/hashtables.factor @@ -131,7 +131,7 @@ M: hashtable set-at ( value key hash -- ) dup ?grow-hash dupd new-key@ set-nth-pair ; : associate ( value key -- hash ) - H{ } clone [ set-at ] keep ; inline + 2 [ set-at ] keep ; inline