Marcel Taeumel uploaded a new version of ST80 to project The Trunk:
http://source.squeak.org/trunk/ST80-mt.264.mcz==================== Summary ====================
Name: ST80-mt.264
Author: mt
Time: 4 March 2021, 5:16:37.757335 pm
UUID: 9600a535-6bad-a54c-80b6-902c4a8d87be
Ancestors: ST80-mt.263
Work around the changes in Collections-nice.925 to make MVC work again. :-)
=============== Diff against ST80-mt.263 ===============
Item was added:
+ ----- Method: TextLineInterval class>>from:to:by: (in category 'instance creation') -----
+ from: startInteger to: stopInteger by: stepInteger
+ "Answer an instance of me, starting at startNumber, ending at
+ stopNumber, and with an interval increment of stepNumber."
+
+ ^ self basicNew
+ setFrom: startInteger
+ to: stopInteger
+ by: stepInteger!
Item was changed:
----- Method: TextLineInterval class>>start:stop:internalSpaces:paddingWidth: (in category 'instance creation') -----
start: startInteger stop: stopInteger internalSpaces: spacesInteger paddingWidth: padWidthInteger
"Answer an instance of me with the arguments as the start, stop points,
number of spaces in the line, and width of the padding."
| newSelf |
+ newSelf := self from: startInteger to: stopInteger by: 1.
- newSelf := super from: startInteger to: stopInteger by: 1.
^newSelf internalSpaces: spacesInteger paddingWidth: padWidthInteger!