Skip to content

Commit

Permalink
Remove stray printing from editcore
Browse files Browse the repository at this point in the history
  • Loading branch information
snuglas committed Mar 17, 2018
1 parent a4fe12d commit ed9613f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools-for-build/editcore.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -1049,8 +1049,11 @@
((= i len)
(when needs-rehash
(setf (svref obj 1) 1)))
;; A weak or EQ-based hash table any of whose keys is a function
;; or code-component might need the 'rehash' flag set.
;; In practice, it is likely already set, because any object that
;; could move in the final GC probably did move.
(when (scanptr obj (+ vector-data-offset i))
(format t "~&SET REHASH: vector=~X~%" (get-lisp-obj-address obj))
(setq needs-rehash t))
(scanptr obj (+ vector-data-offset i 1)))
(return-from scan-obj))
Expand Down

0 comments on commit ed9613f

Please sign in to comment.