fix: ON was defined incorrectly

This commit is contained in:
Edward Langley
2022-09-27 23:16:00 -07:00
parent 850ed89193
commit 6b83963208

View File

@ -299,7 +299,7 @@
(let ((fun (functionalize fun))
(key (functionalize key)))
(lambda (&rest its)
(funcall fun (mapcar key its)))))
(apply fun (mapcar key its)))))
(defun filler (length1 length2 fill-value)
(if (< length1 length2)