make sure macro compiled before probe panel

This commit is contained in:
David Botton 2024-06-06 20:32:34 -04:00
parent efde4130f2
commit 8b1c80e970
4 changed files with 89 additions and 80 deletions

View file

@ -190,7 +190,8 @@
(add-class tree class object)))
(set-on-change root-obj (lambda (obj)
(declare (ignore obj))
(on-change (let ((*package* (find-package (string-upcase (text-value pac-line)))))
(eval (read-from-string (text-value root-obj)))))))
(when (not (equal (text-value root-obj) ""))
(on-change (let ((*package* (find-package (string-upcase (text-value pac-line)))))
(eval (read-from-string (text-value root-obj))))))))
(when object
(on-change object)))))