Method: (PRINT-OBJECT HEADING-PART T)

Source

(defmethod print-object ((h heading-part) stream)
  (print-unreadable-object (h stream :type t :identity nil)
    (format stream "~D ~S" (depth h) (text h))))
Source Context