Levente Uzonyi uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ul.375.mcz==================== Summary ====================
Name: System-ul.375
Author: ul
Time: 19 September 2010, 11:56:58.303 pm
UUID: 421db78a-f7ce-ad43-b569-39a5d3e3ab88
Ancestors: System-dtl.374
- added SmalltalkImage>>hasBindingThatBeginsWith: for backwards compatiblity
=============== Diff against System-dtl.374 ===============
Item was added:
+ ----- Method: SmalltalkImage>>hasBindingThatBeginsWith: (in category 'dictionary access') -----
+ hasBindingThatBeginsWith: aString
+ "Answer true if the receiver has a key that begins with aString, false otherwise"
+
+ ^globals hasBindingThatBeginsWith: aString!