X-Git-Url: https://git.hcoop.net/clinton/lisp-on-lines.git/blobdiff_plain/c7e4e4bc1293b7db3863dee16999d9f24d44f078..4358148e6c67fcc2ae24050c54d8050b4dc03f9d:/src/packages.lisp diff --git a/src/packages.lisp b/src/packages.lisp index b0aa651..e65ff7c 100644 --- a/src/packages.lisp +++ b/src/packages.lisp @@ -1,22 +1,30 @@ (defpackage #:lisp-on-lines (:use - #:common-lisp - #:contextl) + :common-lisp + #:contextl + #:closer-mop + #:alexandria) (:nicknames #:lol) - (:export - + +;; Descriptions #:find-description - #:ensure-description #:define-description + #:with-active-descriptions + ;; Displays #:define-display #:display + #:display-using-description #:*display* #:*object* + ;; Attributes #:find-attribute + #:attribute + #:attributes #:attribute-label + #:attribute-function + #:attribute-value)) + -(cl:defpackage #:lol-test - (:use #:cl #:lisp-on-lines #:stefil #:contextl))