diff options
author | colin <colin@cicadas.surf> | 2025-01-14 07:13:23 -0800 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2025-01-14 07:13:23 -0800 |
commit | a0a903575c8c64a4366b5d7fbbbaec686165b70f (patch) | |
tree | 675d27630a7609c253268620ce610322451303d2 | |
parent | f977f0ab9a1e35bb854d2e228c5e581a6ef50f4a (diff) |
-rw-r--r-- | def.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |