When printing variables, also show the kind.

This commit is contained in:
jjgarcia 2005-05-13 11:43:17 +00:00
parent 3e51fa08ba
commit 11befebb7d

View file

@ -29,6 +29,9 @@
(format stream "#<a ~A: ~A>" (type-of ref-object) name)
(format stream "#<a ~A>" (type-of ref-object)))))
(defun print-var (var-object stream)
(format stream "#<a VAR: ~A KIND: ~A>" (var-name var-object) (var-kind var-object)))
(defun cmperr (string &rest args &aux (*print-case* :upcase))
(print-current-form)
(format t "~&;;; Error: ")