Fix destructuring in FIND-INJECTIONS.

This commit is contained in:
Brit Butler 2012-09-20 18:49:24 -04:00
parent 93ad2670da
commit 0716fdae6c

View file

@ -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)