Remove another use of simple-package-error

This commit is contained in:
jjgarcia 2005-11-04 13:45:50 +00:00
parent 7ca819c59a
commit 675cb421e1

View file

@ -222,10 +222,11 @@
(multiple-value-bind (symbol found)
(find-symbol name package)
(unless found
(signal-simple-error 'package-error "INTERN it."
"Cannot find symbol ~S in package ~S"
(list name package)
:package package)
(cerror "INTERN it."
'simple-package-error
:format-control "Cannot find symbol ~S in package ~S"
:format-arguments (list name package)
:package package)
(setq symbol (intern name package)))
symbol))