aboutsummaryrefslogtreecommitdiff
path: root/lazybones.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lazybones.lisp')
-rw-r--r--lazybones.lisp4
1 files changed, 2 insertions, 2 deletions
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))