changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/skel/ext/inspect.lisp

changeset 698: 96958d3eb5b0
parent: 8fe057887c17
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 (in-package :skel/ext/inspect)
2 
3 (defgeneric sk-inspect (self &key)
4  (:documentation "Open a skel object in the clouseau inspector."))
5 
6 #+clouseau
7 (defmethod sk-inspect ((self sk-project) &key (wait t))
8  (sb-thread:make-thread #'clouseau:inspect :name "SK-INSPECTOR" :arguments (list self)))