From 5552b6ee54c46aa9544f0c7efd40decf5a1483b1 Mon Sep 17 00:00:00 2001 From: toy <toy> Date: Fri, 21 Feb 2003 16:06:57 +0000 Subject: [PATCH] The deftransform for find should return the item we found, not the item we were looking for (because of :test-not). --- compiler/seqtran.lisp | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/compiler/seqtran.lisp b/compiler/seqtran.lisp index 277213533..6b98d6943 100644 --- a/compiler/seqtran.lisp +++ b/compiler/seqtran.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/seqtran.lisp,v 1.24 2000/05/02 04:44:28 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/seqtran.lisp,v 1.25 2003/02/21 16:06:57 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -183,11 +183,13 @@ (deftransform find ((item sequence &key from-end (test #'eql) (start 0) end) (t simple-string &rest t)) - `(if (position item sequence - ,@(when from-end `(:from-end from-end)) - :test test :start start :end end) - item - nil)) + (let ((index (gensym))) + `(let ((,index (position item sequence + ,@(when from-end `(:from-end from-end)) + :test test :start start :end end))) + (if ,index + (elt sequence ,index) + nil)))) ;;;; Utilities: -- GitLab