fix to make-hash-table*

This commit is contained in:
David Botton 2022-02-11 08:53:56 -05:00
parent bcbc7c46b8
commit 14f1c69009
2 changed files with 5 additions and 3 deletions

View file

@ -18,7 +18,7 @@
;; (lw and ccl default hash is synchronized)
#+(or sbcl ecl mezzano)
(apply #'make-hash-table :synchronized t args)
#-(or sbcl ecl mezzano) (make-hash-table))
#-(or sbcl ecl mezzano) (apply #'make-hash-table args))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Implementation - clog-group