Dict.st
changeset 302 1f76060d58a4
parent 293 31df3850e98c
child 345 cf2301210c47
--- a/Dict.st	Tue Mar 07 22:55:20 1995 +0100
+++ b/Dict.st	Thu Mar 09 00:40:27 1995 +0100
@@ -21,7 +21,7 @@
 COPYRIGHT (c) 1991 by Claus Gittinger
 	      All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic/Attic/Dict.st,v 1.18 1995-03-06 19:15:52 claus Exp $
+$Header: /cvs/stx/stx/libbasic/Attic/Dict.st,v 1.19 1995-03-08 23:37:55 claus Exp $
 '!
 
 !Dictionary class methodsFor:'documentation'!
@@ -42,7 +42,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libbasic/Attic/Dict.st,v 1.18 1995-03-06 19:15:52 claus Exp $
+$Header: /cvs/stx/stx/libbasic/Attic/Dict.st,v 1.19 1995-03-08 23:37:55 claus Exp $
 "
 !
 
@@ -372,8 +372,15 @@
 
 !Dictionary methodsFor:'enumerating'!
 
+keysDo:aBlock
+    "perform the block for all keys in the collection."
+
+    ^ super do:aBlock
+!
+
 allKeysDo:aBlock
-    "perform the block for all keys in the collection."
+    "perform the block for all keys in the collection.
+     Obsolete: use keysDo: for ST-80 compatibility."
 
     ^ super do:aBlock
 !