- Added missing closing paren for defun on-key in org/channel-tui-main.org line 616 (was 7 trailing ), now 8) - Replaced #\) character literal with (code-char 41) to avoid reader ambiguity with paren-delimiter counting - All 3 TUI org files tangled and verified compilable - passepartout/tui loads without errors under SBCL 2.5.2
24 lines
903 B
Common Lisp
24 lines
903 B
Common Lisp
(defsystem :passepartout
|
|
:name "Passepartout"
|
|
:author "Amr Gharbeia"
|
|
:version "0.7.2"
|
|
:license "AGPLv3"
|
|
:description "The Probabilistic-Deterministic Lisp Machine"
|
|
:depends-on (:usocket :bordeaux-threads :dexador :uiop :cl-dotenv :cl-ppcre :hunchentoot :ironclad :str :cl-json :uuid)
|
|
:serial t
|
|
:components ((:file "lisp/core-package")
|
|
(:file "lisp/core-skills")
|
|
(:file "lisp/core-transport")
|
|
(:file "lisp/core-memory")
|
|
(:file "lisp/core-perceive")
|
|
(:file "lisp/core-reason")
|
|
(:file "lisp/core-act")
|
|
(:file "lisp/core-pipeline")))
|
|
|
|
(defsystem :passepartout/tui
|
|
:depends-on (:passepartout :cl-tty :usocket :bordeaux-threads)
|
|
:serial t
|
|
:components ((:file "lisp/channel-tui-state")
|
|
(:file "lisp/channel-tui-view")
|
|
(:file "lisp/channel-tui-main")))
|