From: Mark Wooding Date: Mon, 12 Aug 2019 10:14:43 +0000 (+0100) Subject: src/pset-proto.lisp: Print type names in lowercase in error messages. X-Git-Url: https://git.distorted.org.uk/~mdw/sod/commitdiff_plain/f754d8ca377b0ebf8a67f585df06411c4d85cc72 src/pset-proto.lisp: Print type names in lowercase in error messages. --- diff --git a/src/pset-proto.lisp b/src/pset-proto.lisp index 09547e8..f03ec51 100644 --- a/src/pset-proto.lisp +++ b/src/pset-proto.lisp @@ -93,7 +93,8 @@ ;; say it didn't work. (:method (value type wanted) (if (eql type wanted) value - (error "Incorrect type: expected ~A but found ~A" wanted type))) + (error "Incorrect type: expected ~(~A~) but found ~(~A~)" + wanted type))) ;; If the caller asks for type T then give them the raw thing. (:method (value type (wanted (eql t)))