summaryrefslogtreecommitdiff
path: root/util.lisp
diff options
context:
space:
mode:
authorcolin <colin@cicadas.surf>2024-11-30 07:29:15 -0800
committercolin <colin@cicadas.surf>2024-11-30 07:29:15 -0800
commitc1029b0f740e09ccac65ab97b3bf9e06bd39e9bd (patch)
tree72f64ff9480fe1c965a108dc79662d74aadec4f4 /util.lisp
parentd625b07e4491be03450675b19eb8ff63a3a5e4df (diff)
Remove: alexandria dependency
Diffstat (limited to 'util.lisp')
-rw-r--r--util.lisp3
1 files changed, 3 insertions, 0 deletions
diff --git a/util.lisp b/util.lisp
index 4c13d19..7645f6b 100644
--- a/util.lisp
+++ b/util.lisp
@@ -37,3 +37,6 @@ YES is everything for which PRED is T, NO is everything else."
(defun lambda-opt-p (x)
(find x '(cl:&optional cl:&key cl:&aux cl:&allow-other-keys cl:&rest)
:test #'eq))
+
+(defun make-keyword (name)
+ (intern (string name) :keyword))