Skip to content
This repository has been archived by the owner on Apr 21, 2024. It is now read-only.

Commit

Permalink
Exclude format-out when using uncommon-dylan
Browse files Browse the repository at this point in the history
We want the one from the IO library since it uses *standard-output* instead of
the console.
  • Loading branch information
cgay committed Nov 7, 2023
1 parent 02080ea commit a6eb7dc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions sources/library.dylan
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ define module shared
use operating-system, prefix: "os/";
use streams;
use strings;
use uncommon-dylan;
use uncommon-dylan,
exclude: { format-out };
export
*debug?*,
*verbose?*,
Expand Down Expand Up @@ -193,7 +194,7 @@ define module %workspaces
use strings;
use threads;
use uncommon-dylan,
exclude: { format-to-string };
exclude: { format-out, format-to-string };
use uncommon-utils,
import: { err, iff, inc!, slice };
use workspaces;
Expand Down Expand Up @@ -223,7 +224,7 @@ define module dylan-tool
use streams;
use strings;
use uncommon-dylan,
exclude: { format-to-string };
exclude: { format-out, format-to-string };
use uncommon-utils,
import: { err, iff, inc!, slice };
use workspaces, prefix: "ws/";
Expand Down

0 comments on commit a6eb7dc

Please sign in to comment.