diff options
author | Colin Okay <colin@cicadas.surf> | 2022-10-27 09:55:44 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-10-27 09:55:44 -0500 |
commit | f3698889e04d90b346e79338ec6afa56ccf385dd (patch) | |
tree | e5fcab40a0f1a4f07564cf8acd986f28a8947e49 /user.lisp | |
parent | f4dbd7e0a7067e96b2db143171b06d0a127643cc (diff) |
Rename: alambda to thunk*
Diffstat (limited to 'user.lisp')
-rw-r--r-- | user.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,7 +22,7 @@ (button (:content "Create" :bind btn))) (set-on-click btn - (alambda + (thunk* (new-playlist (session-user parent) :title (value pl-title)) (reload (location (connection-body parent))))))) @@ -43,7 +43,7 @@ (a (:link url :content (playlist-title pl) :bind pl-link)))) (set-on-click pl-link - (alambda + (thunk* (setf (url (location (connection-body parent))) url))))))) |