aboutsummaryrefslogtreecommitdiff
path: root/lib.functions.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lib.functions.lisp')
-rw-r--r--lib.functions.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.functions.lisp b/lib.functions.lisp
index e56c224..48f50bc 100644
--- a/lib.functions.lisp
+++ b/lib.functions.lisp
@@ -42,7 +42,7 @@ each member is STEP distance apart."
where key x in A has associations {y in LST : INDICATOR(y) = x}."
(loop :with assoc-list := nil
:for element :in lst
- :for key = (funcall indicator element)
+ :for key := (funcall indicator element)
:if (assoc key assoc-list :test key-eq)
:do (->> (alist-val key assoc-list)
(cons element)