Hello,
This works fine in sbcl:
(defparameter *array-element-hash* (make-hash-table :test 'equalp ))
but gcl (from within Maxima) gives
Maxima encountered a Lisp error:
Error in SETQ [or a callee]: EQUALP is an illegal hash-table test function.
Gcl is does not complain about 'equal
http://www.lispworks.com claims that 'equalp is legal.
Is this just not implemented in gcl ?
I am not sure the translator code really needs equalp anyway, but
its interesting.
Thanks,
John