Pass &rest args onto next method in display t NULL
[clinton/lisp-on-lines.git] / src / standard-descriptions / t.lisp
index cdef9d7..3256903 100644 (file)
 
 (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)))
+