Ignore:
Timestamp:
05/27/11 22:38:25 (12 years ago)
Author:
ehuelsmann
Message:

Remove PRINT-OBJECT method which masked java-side-implemented
printing of built-in ERRORs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/print-object.lisp

    r12583 r13305  
    4040
    4141(defmethod print-object ((object t) stream)
    42   (print-unreadable-object (object stream :type t :identity t)))
     42  (print-unreadable-object (object stream :type t :identity t)
     43     (write-string (%write-to-string object) stream)))
    4344
    4445(defmethod print-object ((object structure-object) stream)
    4546  (write-string (%write-to-string object) stream))
    46 
    47 (defmethod print-object ((object standard-object) stream)
    48   (print-unreadable-object (object stream :identity t)
    49     (format stream "~S" (class-name (class-of object))))
    50   object)
    5147
    5248(defmethod print-object ((class class) stream)
Note: See TracChangeset for help on using the changeset viewer.