Fix destructuring in FIND-INJECTIONS.
This commit is contained in:
parent
93ad2670da
commit
0716fdae6c
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ any return value other than nil indicates the injection should be added."
|
|||
|
||||
(defun find-injections (content)
|
||||
(flet ((injections-for (location)
|
||||
(loop for (injection . predicate) in (getf *injections* location)
|
||||
(loop for (injection predicate) in (getf *injections* location)
|
||||
when (funcall predicate content)
|
||||
collect injection)))
|
||||
(list :head (injections-for :head)
|
||||
|
|
Loading…
Add table
Reference in a new issue