[Pkg] The Trunk: Collections-monty.714.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Feb 8 00:40:32 UTC 2017


David T. Lewis uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/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)]]!



More information about the Packages mailing list