[movitz-cvs] CVS movitz/losp/muerte
ffjeld
ffjeld at common-lisp.net
Sat May 6 19:36:50 UTC 2006
Update of /project/movitz/cvsroot/movitz/losp/muerte
In directory clnet:/tmp/cvs-serv8161
Modified Files:
lists.lisp
Log Message:
For member, apply key to item too.
--- /project/movitz/cvsroot/movitz/losp/muerte/lists.lisp 2006/05/05 21:39:02 1.16
+++ /project/movitz/cvsroot/movitz/losp/muerte/lists.lisp 2006/05/06 19:36:50 1.17
@@ -9,7 +9,7 @@
;;;; Created at: Tue Dec 5 18:40:11 2000
;;;; Distribution: See the accompanying file COPYING.
;;;;
-;;;; $Id: lists.lisp,v 1.16 2006/05/05 21:39:02 ffjeld Exp $
+;;;; $Id: lists.lisp,v 1.17 2006/05/06 19:36:50 ffjeld Exp $
;;;;
;;;;------------------------------------------------------------------
@@ -125,7 +125,7 @@
(with-funcallable (test (or (and test-not (complement test-not)) test))
(do ((p list (cdr p)))
((endp p) nil)
- (when (test item (key (car p)))
+ (when (test (key item) (key (car p)))
(return p)))))))))
(defun last (list &optional (n 1))
More information about the Movitz-cvs
mailing list