From 8d19cb6d169c6614d3e70f7949afcbefae2e0d14 Mon Sep 17 00:00:00 2001
From: "Robert P. Goldman" <rpgoldman@real-time.com>
Date: Mon, 8 Feb 2010 11:35:05 -0600
Subject: [PATCH] Fixed the comment on the dependencies loop in TRAVERSE.

---
 asdf.lisp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/asdf.lisp b/asdf.lisp
index 37d61181..d4ce253d 100644
--- a/asdf.lisp
+++ b/asdf.lisp
@@ -1258,10 +1258,10 @@ recursive calls to traverse.")
       (unwind-protect
           (progn
             ;; first we check and do all the dependencies for the
-            ;; module.  Note that there is no information flow out of
-            ;; here, so there's no way for module dependencies to
-            ;; affect whether either the module itself, or its
-            ;; components are affected...
+            ;; module.  Operations planned in this loop will show up
+            ;; in the contents of the FORCED variable, and are consumed
+            ;; downstream (watch out for the shadowing FORCED variable
+            ;; around the DOLIST below!)
             (loop :for (required-op . deps) :in
                   (component-depends-on operation c)
                   :do (do-dep required-op deps))
-- 
GitLab