cmp: fix typo

Introduced by the refactor in commit 2304da9a83.
This commit is contained in:
Marius Gerbershagen 2024-03-16 19:59:23 +01:00
parent dc286efb66
commit 3c75b5b4d8

View file

@ -328,6 +328,7 @@
(defun search-vv (object &key permanent (errorp t))
(let* ((test (if si:*compiler-constants* 'eq 'equal-with-circularity))
(item (if permanent
(find object *permanent-objects* :test test :key #'vv-value)
(or (find object *permanent-objects* :test test :key #'vv-value)
(find object *temporary-objects* :test test :key #'vv-value)))))
(when (and (null item) errorp)