diff --git a/code/list.lisp b/code/list.lisp index 4900b84c9cceb8758b0f6ea3ac3570cb8b736777..48deded43f4c5caa57a5d20ac4c029059f262262 100644 --- a/code/list.lisp +++ b/code/list.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/code/list.lisp,v 1.24 2001/03/04 20:12:38 pw Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/list.lisp,v 1.25 2001/03/04 21:32:40 pw Exp $") ;;; ;;; ********************************************************************** ;;; @@ -861,6 +861,7 @@ (defmacro assoc-guts (test-guy) `(do ((alist alist (cdr alist))) ((endp alist)) + (declare (optimize (inhibit-warnings 3))) (if (car alist) (if ,test-guy (return (car alist))))))