Remove a use of MAKE-HASH-TABLE with :LOCKABLE from trace.lsp

This commit is contained in:
Juan Jose Garcia Ripoll 2011-07-31 23:26:20 +02:00
parent 40f4a2a26f
commit beab61e549

View file

@ -274,7 +274,7 @@ for Stepper mode commands."
(defun step* (form)
(let* ((*step-action* t)
(*step-level* 0)
(*step-functions* (make-hash-table :size 128 :test 'eq :lockable t)))
(*step-functions* (make-hash-table :size 128 :test 'eq)))
(catch *step-tag*
(si:eval-with-env form nil t))))