Helmut Eller heller@common-lisp.net writes:
- Helmut Eller [2009-01-05 08:33+0100] writes:
You could just increase the limits.
Paradoxically, it would also work to reduce *PRINT-LINES*. E.g.: (defstruct foo a b c d e f g i j k l m n o p q r s t) (let ((*print-lines* 5)) (format t "object ~a is no of type bar" (make-foo)))
looks quite readable.
It won't unfortunately work on the error I pasted in my OP.
-T.