diff options
| author | Matthias Benkard <code@mail.matthias.benkard.de> | 2007-08-03 22:01:32 +0200 |
|---|---|---|
| committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2007-08-03 22:01:32 +0200 |
| commit | d785d3cd4cbca64fcd840e078540c7c2203445b9 (patch) | |
| tree | 4aa0e1177e5eb0d549c7aa9527566d64b5127c5b | |
| parent | dbc13eadd5c4885e8d2fa13858c748f09273ce41 (diff) | |
Further improve PRINT-OBJECT output.
darcs-hash:a665c03ddf1a03161b3aef04f3199bd82df92aea
| -rw-r--r-- | objcl.lisp | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -344,9 +344,12 @@ (defmethod print-object ((object objc-id) stream) (print-unreadable-object (object stream) - (format stream "~A {~X}" + (format stream "~A `~A' {~X}" (objcl-class-name (objcl-invoke-class-method object "class")) + (objcl-invoke-class-method + (objcl-invoke-class-method object "description") + "UTF8String") (objcl-invoke-class-method object "hash")))) |
