Fixed typo in the implementation of THE.

This commit is contained in:
Juan Jose Garcia Ripoll 2010-02-07 11:13:37 +01:00
parent 6801d9de04
commit d013d603f0

View file

@ -27,7 +27,7 @@
(let* ((form (c1expr (second args)))
(the-type (type-filter (first args) t))
type)
(if (setf type (type-and the-type (c1form-primary-type form)))
(if (setf type (values-type-and the-type (c1form-primary-type form)))
(setf (c1form-type form) type)
(cmpwarn "Type mismatch was found in ~s." (cons 'THE args)))
form))