[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Bug in message about sequence fns
- To: common-lisp at SU-AI
- Subject: Bug in message about sequence fns
- From: Guy.Steele at CMU-10A
- Date: Fri, 04 Jun 1982 16:14:00 -0000
- In-reply-to: Richard M. Stallman@MIT-AI's message of 3 Jun 82 23:45-EST
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