[Gd-chatter] r11124 - in trunk/libraries: layer vector-table

hannes at gwydiondylan.org hannes at gwydiondylan.org
Sat Jan 6 02:43:46 CET 2007


Author: hannes
Date: Sat Jan  6 02:43:44 2007
New Revision: 11124

Modified:
   trunk/libraries/layer/module.dylan
   trunk/libraries/vector-table/vector-table.dylan
Log:
Bug: 7299
minor fixes:
 *use icmp in layer
 *rename table (because of introduction of table-function-macro) in vector-table

Modified: trunk/libraries/layer/module.dylan
==============================================================================
--- trunk/libraries/layer/module.dylan	(original)
+++ trunk/libraries/layer/module.dylan	Sat Jan  6 02:43:44 2007
@@ -21,6 +21,7 @@
   use streams;
   use ipv4;
   use tcp;
+  use icmp;
   use ethernet;
   use dns, exclude: { ipv4-address };
   use cidr;

Modified: trunk/libraries/vector-table/vector-table.dylan
==============================================================================
--- trunk/libraries/vector-table/vector-table.dylan	(original)
+++ trunk/libraries/vector-table/vector-table.dylan	Sat Jan  6 02:43:44 2007
@@ -5,7 +5,7 @@
 define sealed class <vector-table> (<table>)
 end class;
 
-define method table-protocol (table :: <vector-table>)
+define method table-protocol (my-table :: <vector-table>)
  => (test-function :: <function>, hash-function :: <function>)
   values(method (x, y) x = y end, vector-hash);
 end method table-protocol; 



More information about the chatter mailing list