From cb00a9190355ca60f57a898adc253cb61f38f3a3 Mon Sep 17 00:00:00 2001 From: Eric Timmons <etimmons@mit.edu> Date: Thu, 3 Jun 2021 11:59:35 -0400 Subject: [PATCH] Remove a loop* (see !172) --- upgrade.lisp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/upgrade.lisp b/upgrade.lisp index af8d2ae69..85ada263a 100644 --- a/upgrade.lisp +++ b/upgrade.lisp @@ -140,11 +140,11 @@ previously-loaded version of ASDF." (if (consp x) (values (car x) (cadr x)) (values x :asdf)) (find-symbol* s p nil))) (asyms (l) (mapcar #'asym l))) - (loop* :for (name superclasses slots) :in redefined-classes - :for sym = (find-symbol* name :asdf nil) - :when (and sym (find-class sym)) - :do #+ccl (eval `(defclass ,sym ,(asyms superclasses) ,(asyms slots))) - #-ccl (setf (find-class sym) nil))))) ;; mkcl + (loop :for (name superclasses slots) :in redefined-classes + :for sym = (find-symbol* name :asdf nil) + :when (and sym (find-class sym)) + :do #+ccl (eval `(defclass ,sym ,(asyms superclasses) ,(asyms slots))) + #-ccl (setf (find-class sym) nil))))) ;; mkcl ;;; Self-upgrade functions (with-upgradability () -- GitLab