From db078b7c2fc9611aa0aefd82f18dfb553487ac63 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Wed, 4 Jul 2001 13:51:33 +0000 Subject: [PATCH] . original commit: 862988727c101e427427f5aef06139d654601b2c --- collects/mred/mred.ss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/collects/mred/mred.ss b/collects/mred/mred.ss index 02a5d13c..7482e0ae 100644 --- a/collects/mred/mred.ss +++ b/collects/mred/mred.ss @@ -2083,8 +2083,9 @@ [info (map (lambda (child) (send child get-info)) childs)]) - (if (equal? childs children) - ;; Got the infor for the right set of children + (if (and (= (length childs) (length children)) + (andmap eq? childs children)) + ;; Got the info for the right set of children (set! children-info info) ;; During the call to some get-info, the set of children changed;