Made attribute class layered
[clinton/lisp-on-lines.git] / src / packages.lisp
CommitLineData
c7e4e4bc 1(defpackage #:lisp-on-lines
2 (:use
079b9084 3 :common-lisp
4358148e 4 #:contextl
5 #:closer-mop
6 #:alexandria)
c7e4e4bc 7 (:nicknames #:lol)
1d51a2ee 8 (:export
079b9084 9
10;; Descriptions
1d51a2ee 11 #:find-description
1d51a2ee 12 #:define-description
4358148e 13 #:with-active-descriptions
14
079b9084 15 ;; Displays
1d51a2ee 16 #:define-display
17 #:display
079b9084 18 #:display-using-description
1d51a2ee 19 #:*display*
20 #:*object*
21
079b9084 22 ;; Attributes
1d51a2ee 23 #:find-attribute
4358148e 24 #:attribute
25 #:attributes
1d51a2ee 26 #:attribute-label
079b9084 27 #:attribute-function
28 #:attribute-value))
29
1d51a2ee 30