[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Bug in message about sequence fns



Thanks go to RMS for noticing a bug in my last message.  The last
example for the keyword-style functions should not be
(remove-if '(1 2 4 1 3 4 5) :count 1 :from-end t :test #'evenp)
but should instead be
(remove-if #'evenp '(1 2 4 1 3 4 5) :count 1 :from-end t)

I wasn't paying attention when I fixed another bug, resulting
in this bug.
--Guy