From: Clinton Ebadi Date: Tue, 22 Feb 2011 11:10:38 +0000 (-0500) Subject: Pass &rest args onto next method in display t NULL X-Git-Url: https://git.hcoop.net/clinton/lisp-on-lines.git/commitdiff_plain/7aeb0a9093d5bc2e0695fa003205b39dad67d967 Pass &rest args onto next method in display t NULL * This caused :attributes &c to be ignored when displaying into a string --- diff --git a/src/standard-descriptions/t.lisp b/src/standard-descriptions/t.lisp index cdef9d7..3256903 100644 --- a/src/standard-descriptions/t.lisp +++ b/src/standard-descriptions/t.lisp @@ -117,8 +117,8 @@ (define-display :around ((description t) (display null) object) (with-output-to-string (*standard-output*) - (call-next-layered-method description t object)) -) + (apply #'call-next-layered-method description t object args))) +