Skip to content

Commit

Permalink
Allow describe to work with cxx-objects
Browse files Browse the repository at this point in the history
  • Loading branch information
drmeister committed Sep 29, 2019
1 parent b704da1 commit f0cb896
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lisp/kernel/lsp/describe.lsp
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,7 @@ q (or Q): quits the inspection.~%~
((hash-table-p object) (inspect-hashtable object))
#+clos
((sys:instancep object) (inspect-instance object))
((sys:cxx-object-p object) (describe-object object *standard-output*))
(t (format t "~S - ~S" object (type-of object))))))

(defun default-inspector (object)
Expand Down

0 comments on commit f0cb896

Please sign in to comment.