diff options
| author | Gene Pasquet <dev@etenil.net> | 2026-07-26 10:53:38 +0100 |
|---|---|---|
| committer | Gene Pasquet <dev@etenil.net> | 2026-07-26 10:53:38 +0100 |
| commit | d169662aa6f342345acb71e08a9ab93df95ea4b5 (patch) | |
| tree | 8e6dd18b170f9f2e3feab1065883b525a7d66d24 | |
| parent | c9c3db4c0b6656203516c15f2881fae08731c327 (diff) | |
Rename package
| -rw-r--r-- | all.lisp | 6 | ||||
| -rw-r--r-- | class.lisp | 4 | ||||
| -rw-r--r-- | frame.lisp | 6 | ||||
| -rw-r--r-- | solar-short.asd | 4 |
4 files changed, 10 insertions, 10 deletions
@@ -1,6 +1,6 @@ (uiop:define-package - :solar-short/all + :haiku-book/all (:export) (:mix-reexport - :solar-short/frame - :solar-short/class)) + :haiku-book/frame + :haiku-book/class)) @@ -1,9 +1,9 @@ (uiop:define-package - :solar-short/class + :haiku-book/class (:export #:book #:display-haiku #:next-haiku) (:import-from :asdf)) -(in-package :solar-short/class) +(in-package :haiku-book/class) (defclass book () ((haikus @@ -1,10 +1,10 @@ (uiop:define-package - :solar-short/frame + :haiku-book/frame (:export) - (:mix-reexport :solar-short/class) + (:mix-reexport :haiku-book/class) (:mix :clim :clim-lisp)) -(in-package :solar-short/frame) +(in-package :haiku-book/frame) (define-application-frame read-haiku diff --git a/solar-short.asd b/solar-short.asd index 78dd74e..1a16050 100644 --- a/solar-short.asd +++ b/solar-short.asd @@ -1,6 +1,6 @@ (defsystem - solar-short + haiku-book :class :package-inferred-system - :depends-on (:solar-short/frame) + :depends-on (:haiku-book/frame) :components ((:static-file "story.text"))) |
