Pass &rest args onto next method in display t NULL
authorClinton Ebadi <clinton@unknownlamer.org>
Tue, 22 Feb 2011 11:10:38 +0000 (06:10 -0500)
committerClinton Ebadi <clinton@unknownlamer.org>
Tue, 22 Feb 2011 11:10:38 +0000 (06:10 -0500)
* This caused :attributes &c to be ignored when displaying into a string

src/standard-descriptions/t.lisp

index cdef9d7..3256903 100644 (file)
 
 (define-display :around ((description t) (display null) object)
  (with-output-to-string (*standard-output*)
 
 (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)))
+