aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <colin@cicadas.surf>2022-10-15 11:44:22 -0500
committerColin Okay <colin@cicadas.surf>2022-10-15 11:44:22 -0500
commitf6326c7783bcc115ef74131e7eef12105468cf45 (patch)
treedab24bc273f1bf9faac18a43ed115dd5bca9c6ef
parentfee73c9f8ed2213d22df12f2a407639764079d60 (diff)
Fix: name clash
-rw-r--r--lazybones.asd2
-rw-r--r--lazybones.lisp4
-rw-r--r--package.lisp2
3 files changed, 4 insertions, 4 deletions
diff --git a/lazybones.asd b/lazybones.asd
index 77a7924..bd56d95 100644
--- a/lazybones.asd
+++ b/lazybones.asd
@@ -4,7 +4,7 @@
:description "http route handling"
:author "Colin Okay <okay@toyful.space>"
:license "AGPLv3"
- :version "0.10.0"
+ :version "0.10.1"
:serial t
:depends-on (#:alexandria
#:str
diff --git a/lazybones.lisp b/lazybones.lisp
index d15af33..1738c00 100644
--- a/lazybones.lisp
+++ b/lazybones.lisp
@@ -148,11 +148,11 @@ supplied, get the default app. Every package has at most one default
app, named with the package name. If no app can be found, return NIL"
(symbol-lazybones (or name (default-app-name)) nil))
-(defun app-dict (key &optional name)
+(defun dictionary (key &optional name)
"Get value from the application dict"
(gethash key (app-dict (app name))))
-(defun (setf app-dict) (new key &optional name)
+(defun (setf dictionary) (new key &optional name)
"Set a value in the application dict."
(setf (gethash key (app-dict (app name))) new))
diff --git a/package.lisp b/package.lisp
index 8c65afd..1a6e7bc 100644
--- a/package.lisp
+++ b/package.lisp
@@ -82,5 +82,5 @@
#:drop-definition
#:add-class-to-definitions
#:ext->mimetype
- #:app-dict))
+ #:dictionary))