The Inbox: Collections-monty.714.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: Collections-monty.714.mcz

commits-2
A new version of Collections was added to project The Inbox:
http://source.squeak.org/inbox/Collections-monty.714.mcz

==================== Summary ====================

Name: Collections-monty.714
Author: monty
Time: 3 February 2017, 10:01:44.476206 pm
UUID: 48b96a24-dd93-4072-b019-fbeefa9e70ff
Ancestors: Collections-mt.713

added #applyLanguageInformation: (with spelling corrected) from the old XML-Parser package to String and ByteString because MOFile depends on it and leaving it as an XML-Parser extension breaks installing newer packages from the SqueakMap

=============== Diff against Collections-mt.713 ===============

Item was added:
+ ----- Method: ByteString>>applyLanguageInformation: (in category 'accessing') -----
+ applyLanguageInformation: languageEnvironment
+ !

Item was added:
+ ----- Method: String>>applyLanguageInformation: (in category 'accessing') -----
+ applyLanguageInformation: languageEnvironment
+
+ | leadingChar |
+ leadingChar := languageEnvironment leadingChar.
+ self withIndexDo: [:each :idx |
+ each asciiValue > 255
+ ifTrue: [self at: idx put: (Character leadingChar: leadingChar code: each asUnicode)]]!