Fixed typo.

This commit is contained in:
Juan Jose Garcia Ripoll 2011-01-24 22:34:03 +01:00
parent 087b65aaad
commit a1948e845c

View file

@ -347,7 +347,7 @@
(form1 (c1expr form))
(type (type-and (var-type name1) (c1form-primary-type form1))))
(unless type
(cmpwarn "Type mismatch between ~s and ~s." (var-name vref) form)
(cmpwarn "Type mismatch between ~s and ~s." name form)
(setq type T))
;; Is this justified????
#+nil(setf (c1form-type form1) type)
@ -410,7 +410,7 @@
(form (c1expr (second l)))
(type (type-and (var-type vref) (c1form-primary-type form))))
(unless type
(cmpwarn "Type mismatch between ~s and ~s." name form)
(cmpwarn "Type mismatch between ~s and ~s." (var-name vref) form)
(setq type T))
;; Is this justified????
#+nil(setf (c1form-type form) type)