mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
fix ros dump with --destroy-packages-sbcl (#608) reported by Alexander Artemenko
This commit is contained in:
parent
c7170d4cb7
commit
ac187eadaa
|
|
@ -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 ".")
|
||||
|
|
|
|||
Loading…
Reference in a new issue