summaryrefslogtreecommitdiff
path: root/def.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'def.lisp')
-rw-r--r--def.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/def.lisp b/def.lisp
index 6a2505c..a096230 100644
--- a/def.lisp
+++ b/def.lisp
@@ -110,7 +110,7 @@ E.g.
`(,slot
,accessor-type ,(make-accessor-name slot prefix-accessor?)
,@(unless no-arg?
- (list :initarg (alexandria:make-keyword slot)))
+ (list :initarg (make-keyword slot)))
,@(handle-required slot required? kwargs)
:documentation ,doc))
:else
@@ -118,7 +118,7 @@ E.g.
`(,slot
,accessor-type ,(make-accessor-name slot prefix-accessor?)
,@(unless no-arg?
- (list :initarg (alexandria:make-keyword slot)))
+ (list :initarg (make-keyword slot)))
,@(handle-required slot required? kwargs)))))))
(parse-class-options (kwargs)