From e641ac9b24aa19a8f996b46d815d35b2e811784c Mon Sep 17 00:00:00 2001 From: Jono Spiro Date: Mon, 2 Aug 2004 14:41:16 +0000 Subject: [PATCH] fixed the ordering of the hack that chooses the main module to load svn: r121 --- collects/mztake/mztake.ss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/mztake/mztake.ss b/collects/mztake/mztake.ss index 7561d25281..3809b13e49 100644 --- a/collects/mztake/mztake.ss +++ b/collects/mztake/mztake.ss @@ -508,7 +508,7 @@ Find a way to bind to the result of ananonymous expression: here->(add1 2) (set-debug-client-process! client process) (set-debug-client-line-col->pos! client (line-col->pos filename)) (set-debug-process-clients! process - (cons client (debug-process-clients process))) + (append (list client) (debug-process-clients process))) client))))