summaryrefslogtreecommitdiff
path: root/Lisp/utilities.lisp
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2008-02-03 00:18:04 +0100
committerMatthias Benkard <code@mail.matthias.benkard.de>2008-02-03 00:18:04 +0100
commitbbf46f625cb69a3f99659222bd34f116e0c3ac76 (patch)
tree139e6e7bed3d783f8d57ed7dfd4943e6348c8676 /Lisp/utilities.lisp
parente3c9ac147bcd0e3516326a306a24f73ef0a6d4c4 (diff)
Automatically export newly defined wrapper classes.
darcs-hash:94ee737ab79b1cca1de896b9d6cdbcca06db1071
Diffstat (limited to 'Lisp/utilities.lisp')
-rw-r--r--Lisp/utilities.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lisp/utilities.lisp b/Lisp/utilities.lisp
index ccf80cf..5310f91 100644
--- a/Lisp/utilities.lisp
+++ b/Lisp/utilities.lisp
@@ -251,7 +251,7 @@ invocations will return numbers.)
(defmethod print-object ((class objective-c-class) stream)
(print-unreadable-object (class stream)
(with-slots (pointer) class
- (format stream "~S ~A {~X}"
+ (format stream "~S ~S {~X}"
(type-of class)
(class-name class)
(cffi:pointer-address pointer)))))
@@ -260,7 +260,7 @@ invocations will return numbers.)
(defmethod print-object ((meta-class objective-c-meta-class) stream)
(print-unreadable-object (meta-class stream)
(with-slots (pointer) meta-class
- (format stream "~S ~A {~X}"
+ (format stream "~S ~S {~X}"
(type-of meta-class)
(class-name meta-class)
(cffi:pointer-address pointer)))))