[Gd-chatter] r11181 - in trunk/fundev/sources: corba/orb/dylan corba/scepter/abstract-syntax-tree deuce environment/project-wizard lib/c-lexer
hannes at gwydiondylan.org
hannes at gwydiondylan.org
Sun Feb 18 00:14:23 CET 2007
Author: hannes
Date: Sun Feb 18 00:14:21 2007
New Revision: 11181
Modified:
trunk/fundev/sources/corba/orb/dylan/corba-dylan-library.dylan
trunk/fundev/sources/corba/scepter/abstract-syntax-tree/scepter-ast-module.dylan
trunk/fundev/sources/deuce/module.dylan
trunk/fundev/sources/environment/project-wizard/module.dylan
trunk/fundev/sources/lib/c-lexer/library.dylan
Log:
Job: minor
*exclude table macro from import in several modules
Modified: trunk/fundev/sources/corba/orb/dylan/corba-dylan-library.dylan
==============================================================================
--- trunk/fundev/sources/corba/orb/dylan/corba-dylan-library.dylan (original)
+++ trunk/fundev/sources/corba/orb/dylan/corba-dylan-library.dylan Sun Feb 18 00:14:21 2007
@@ -33,7 +33,7 @@
keyboard-interrupt?,
keyboard-interrupt-polling?-setter,
<keyboard-interrupt>};
- use table-extensions, export: all;
+ use table-extensions, exclude: { table }, export: all;
use threads, export: all;
use format, export: all;
use streams, export: all;
Modified: trunk/fundev/sources/corba/scepter/abstract-syntax-tree/scepter-ast-module.dylan
==============================================================================
--- trunk/fundev/sources/corba/scepter/abstract-syntax-tree/scepter-ast-module.dylan (original)
+++ trunk/fundev/sources/corba/scepter/abstract-syntax-tree/scepter-ast-module.dylan Sun Feb 18 00:14:21 2007
@@ -10,7 +10,7 @@
use generic-arithmetic-functional-dylan, exclude: { union };
use streams;
use format;
- use table-extensions;
+ use table-extensions, exclude: { table };
use scepter-driver;
use scepter-front-end;
use scepter-error;
Modified: trunk/fundev/sources/deuce/module.dylan
==============================================================================
--- trunk/fundev/sources/deuce/module.dylan (original)
+++ trunk/fundev/sources/deuce/module.dylan Sun Feb 18 00:14:21 2007
@@ -340,7 +340,7 @@
element-range-error };
use simple-format;
use threads;
- use table-extensions;
+ use table-extensions, exclude: { table };
use plists;
use byte-vector;
Modified: trunk/fundev/sources/environment/project-wizard/module.dylan
==============================================================================
--- trunk/fundev/sources/environment/project-wizard/module.dylan (original)
+++ trunk/fundev/sources/environment/project-wizard/module.dylan Sun Feb 18 00:14:21 2007
@@ -115,7 +115,7 @@
use locators;
use file-system;
use operating-system;
- use table-extensions;
+ use table-extensions, exclude: { table };
// for case-insensitive-equal
use environment-manager;
Modified: trunk/fundev/sources/lib/c-lexer/library.dylan
==============================================================================
--- trunk/fundev/sources/lib/c-lexer/library.dylan (original)
+++ trunk/fundev/sources/lib/c-lexer/library.dylan Sun Feb 18 00:14:21 2007
@@ -154,7 +154,7 @@
define module cpp-internal
use functional-dylan, exclude: {<union>};
- use table-extensions;
+ use table-extensions, exclude: { table };
use streams, export: {read-element, unread-element};
use standard-io;
use locators;
More information about the chatter
mailing list