On Tue, 15 Apr 2008 20:08:57 +0400, "Dmitriy Ivanov" divanov@aha.ru wrote:
Almost. It is just a matter of replacing the line
(cond (*format-non-strings* (format nil "~A" value))
by the two following
(cond ((eq *format-non-strings* t) (princ-to-string value)) (*format-non-strings* (funcall *format-non-strings* value))
within create-var-printer in the file template.lisp.
Yes, that's the easy part. The documentation is missing, though.