From 2264863cce05e051627148514266feed987f242c Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Wed, 4 Nov 1998 15:47:57 +0000 Subject: [PATCH] got rid of dunit original commit: d27b973c9e75159de610aea6bd14cc3eccf58195 --- collects/framework/app.ss | 2 +- collects/framework/autosave.ss | 2 +- collects/framework/canvas.ss | 2 +- collects/framework/editor.ss | 2 +- collects/framework/exit.ss | 2 +- collects/framework/fileutil.ss | 2 +- collects/framework/finder.ss | 2 +- collects/framework/frame.ss | 2 +- collects/framework/group.ss | 2 +- collects/framework/guiutils.ss | 2 +- collects/framework/handler.ss | 2 +- collects/framework/icon.ss | 2 +- collects/framework/keys.ss | 2 +- collects/framework/main.ss | 2 +- collects/framework/panel.ss | 2 +- collects/framework/pasteboard.ss | 2 +- collects/framework/prefs.ss | 2 +- collects/framework/scheme.ss | 2 +- collects/framework/text.ss | 2 +- collects/framework/version.ss | 2 +- 20 files changed, 20 insertions(+), 20 deletions(-) diff --git a/collects/framework/app.ss b/collects/framework/app.ss index b45fa71d..b9a30ccd 100644 --- a/collects/framework/app.ss +++ b/collects/framework/app.ss @@ -1,4 +1,4 @@ -(dunit/sig framework:application^ +(unit/sig framework:application^ (import) (define current-app-name (make-parameter diff --git a/collects/framework/autosave.ss b/collects/framework/autosave.ss index 30f944c8..336b7239 100644 --- a/collects/framework/autosave.ss +++ b/collects/framework/autosave.ss @@ -1,4 +1,4 @@ -(dunit/sig framework:autosave^ +(unit/sig framework:autosave^ (import mred-interfaces^ [exit : framework:exit^] [preferences : framework:preferences^]) diff --git a/collects/framework/canvas.ss b/collects/framework/canvas.ss index d2c3da0f..83fd8ebb 100644 --- a/collects/framework/canvas.ss +++ b/collects/framework/canvas.ss @@ -1,4 +1,4 @@ -(dunit/sig framework:canvas^ +(unit/sig framework:canvas^ (import mred-interfaces^ [preferences : framework:preferences^]) diff --git a/collects/framework/editor.ss b/collects/framework/editor.ss index 3678bdc6..da21588c 100644 --- a/collects/framework/editor.ss +++ b/collects/framework/editor.ss @@ -1,4 +1,4 @@ -(dunit/sig framework:editor^ +(unit/sig framework:editor^ (import mred-interfaces^ [autosave : framework:autosave^] [finder : framework:finder^] diff --git a/collects/framework/exit.ss b/collects/framework/exit.ss index b210f082..09378d6d 100644 --- a/collects/framework/exit.ss +++ b/collects/framework/exit.ss @@ -1,4 +1,4 @@ -(dunit/sig framework:exit^ +(unit/sig framework:exit^ (import [preferences : framework:preferences^] [gui-utils : framework:gui-utils^]) (rename (-exit exit)) diff --git a/collects/framework/fileutil.ss b/collects/framework/fileutil.ss index 7bd57d4d..e6d3ea30 100644 --- a/collects/framework/fileutil.ss +++ b/collects/framework/fileutil.ss @@ -1,5 +1,5 @@ -(dunit/sig framework:path-utils^ +(unit/sig framework:path-utils^ (import) (define generate-autosave-name diff --git a/collects/framework/finder.ss b/collects/framework/finder.ss index 83ea2098..475bfa72 100644 --- a/collects/framework/finder.ss +++ b/collects/framework/finder.ss @@ -2,7 +2,7 @@ ;;; Authors: Matthew Flatt, Robby Findler, Paul Steckler -(dunit/sig framework:finder^ +(unit/sig framework:finder^ (import mred-interfaces^ [preferences : framework:preferences^] [gui-utils : framework:gui-utils^] diff --git a/collects/framework/frame.ss b/collects/framework/frame.ss index b072c973..85006dff 100644 --- a/collects/framework/frame.ss +++ b/collects/framework/frame.ss @@ -1,4 +1,4 @@ -(dunit/sig framework:frame^ +(unit/sig framework:frame^ (import mred-interfaces^ [group : framework:group^] [preferences : framework:preferences^] diff --git a/collects/framework/group.ss b/collects/framework/group.ss index de649795..d7819952 100644 --- a/collects/framework/group.ss +++ b/collects/framework/group.ss @@ -1,4 +1,4 @@ -(dunit/sig framework:group^ +(unit/sig framework:group^ (import mred-interfaces^ [exit : framework:exit^] [frame : framework:frame^] diff --git a/collects/framework/guiutils.ss b/collects/framework/guiutils.ss index d6df1c1b..71c466cc 100644 --- a/collects/framework/guiutils.ss +++ b/collects/framework/guiutils.ss @@ -1,4 +1,4 @@ -(dunit/sig framework:gui-utils^ +(unit/sig framework:gui-utils^ (import mred-interfaces^) (define cursor-delay diff --git a/collects/framework/handler.ss b/collects/framework/handler.ss index 8000f965..391a8541 100644 --- a/collects/framework/handler.ss +++ b/collects/framework/handler.ss @@ -1,4 +1,4 @@ -(dunit/sig framework:handler^ +(unit/sig framework:handler^ (import mred-interfaces^ [gui-utils : framework:gui-utils^] [finder : framework:finder^] diff --git a/collects/framework/icon.ss b/collects/framework/icon.ss index d478df87..3ae6cd16 100644 --- a/collects/framework/icon.ss +++ b/collects/framework/icon.ss @@ -1,4 +1,4 @@ -(dunit/sig framework:icon^ +(unit/sig framework:icon^ (import mred-interfaces^) (define icon-path diff --git a/collects/framework/keys.ss b/collects/framework/keys.ss index 5bcda9a5..7f7452aa 100644 --- a/collects/framework/keys.ss +++ b/collects/framework/keys.ss @@ -1,4 +1,4 @@ -(dunit/sig framework:keymap^ +(unit/sig framework:keymap^ (import mred-interfaces^ [preferences : framework:preferences^] [finder : framework:finder^] diff --git a/collects/framework/main.ss b/collects/framework/main.ss index cce1756a..fa0a9ad0 100644 --- a/collects/framework/main.ss +++ b/collects/framework/main.ss @@ -1,4 +1,4 @@ -(dunit/sig framework:main^ +(unit/sig framework:main^ (import mred-interfaces^ [preferences : framework:preferences^] [exit : framework:exit^] diff --git a/collects/framework/panel.ss b/collects/framework/panel.ss index afd6fba4..46253fef 100644 --- a/collects/framework/panel.ss +++ b/collects/framework/panel.ss @@ -1,4 +1,4 @@ -(dunit/sig framework:panel^ +(unit/sig framework:panel^ (import mred-interfaces^ [mzlib:function : mzlib:function^]) diff --git a/collects/framework/pasteboard.ss b/collects/framework/pasteboard.ss index 558d299a..52155b1a 100644 --- a/collects/framework/pasteboard.ss +++ b/collects/framework/pasteboard.ss @@ -1,4 +1,4 @@ -(dunit/sig framework:pasteboard^ +(unit/sig framework:pasteboard^ (import mred-interfaces^ [editor : framework:editor^]) diff --git a/collects/framework/prefs.ss b/collects/framework/prefs.ss index ce512d6d..1b26a015 100644 --- a/collects/framework/prefs.ss +++ b/collects/framework/prefs.ss @@ -1,4 +1,4 @@ -(dunit/sig framework:preferences^ +(unit/sig framework:preferences^ (import mred-interfaces^ [exn : framework:exn^] [exit : framework:exit^] diff --git a/collects/framework/scheme.ss b/collects/framework/scheme.ss index e5cf0942..61840987 100644 --- a/collects/framework/scheme.ss +++ b/collects/framework/scheme.ss @@ -3,7 +3,7 @@ ; Scheme mode for MrEd. -(dunit/sig framework:scheme^ +(unit/sig framework:scheme^ (import mred-interfaces^ [preferences : framework:preferences^] [match-cache : framework:match-cache^] diff --git a/collects/framework/text.ss b/collects/framework/text.ss index c69cfcbf..cb69d1f7 100644 --- a/collects/framework/text.ss +++ b/collects/framework/text.ss @@ -1,4 +1,4 @@ -(dunit/sig framework:text^ +(unit/sig framework:text^ (import mred-interfaces^ [editor : framework:editor^] [preferences : framework:preferences^] diff --git a/collects/framework/version.ss b/collects/framework/version.ss index 759adae2..07538a98 100644 --- a/collects/framework/version.ss +++ b/collects/framework/version.ss @@ -1,4 +1,4 @@ -(dunit/sig framework:version^ +(unit/sig framework:version^ (import [mzlib:string : mzlib:string^] [mzlib:function : mzlib:function^])