From 7aeb0a9093d5bc2e0695fa003205b39dad67d967 Mon Sep 17 00:00:00 2001 From: Clinton Ebadi Date: Tue, 22 Feb 2011 06:10:38 -0500 Subject: [PATCH] Pass &rest args onto next method in display t NULL * This caused :attributes &c to be ignored when displaying into a string --- src/standard-descriptions/t.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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))) + -- 2.20.1