I seem to remember the
(member 1 '(1 2 3)) -> t (equal '(1 2) '(1 2)) -> t (member '(1 2) '('(1 2) '(3 4))) -> nil
(equal 1 1) -> t (equal '(1 2) '(1 2)) -> t (eq 1 1) -> t (eq '(1 2) '(1 2)) -> nil
I seem to remember the
bug. It took me just three hours, but boy was it annoying. In the end, it was just me not knowing the language of course.