fix ros dump with --destroy-packages-sbcl (#608) reported by Alexander Artemenko

This commit is contained in:
SANO,Masatoshi 2026-02-27 18:12:28 +09:00
parent c7170d4cb7
commit ac187eadaa

View file

@ -126,10 +126,14 @@ IR1 (deftransform), IR2 (VOP) information in the infodb."
(setf (sb-impl::package-%shadowing-symbols package) nil)
(format t ".")
(setf (sb-impl::package-internal-symbols package)
(sb-impl::make-package-hashtable 0))
(if (fboundp 'sb-impl::make-symbol-table)
(sb-impl::make-symbol-table 0)
(sb-impl::make-package-hashtable 0)))
(format t ".")
(setf (sb-impl::package-external-symbols package)
(sb-impl::make-package-hashtable 0))
(if (fboundp 'sb-impl::make-symbol-table)
(sb-impl::make-symbol-table 0)
(sb-impl::make-package-hashtable 0)))
(format t ".")
(setf (sb-impl::package-tables package) #())
(format t ".")