#FEATURE by stefan
authorStefan Vogel <sv@exept.de>
Mon, 02 Jul 2018 19:38:57 +0200
changeset 23180 6648df377933
parent 23179 8656c17dc5d2
child 23181 8bd670daf7c4
#FEATURE by stefan class: SequenceableCollection changed: #from:to:asStringWith:compressTabs:final:withEmphasis: convert elements of myself via #asString.
SequenceableCollection.st
--- a/SequenceableCollection.st	Mon Jul 02 19:02:41 2018 +0200
+++ b/SequenceableCollection.st	Mon Jul 02 19:38:57 2018 +0200
@@ -449,7 +449,6 @@
 ! !
 
 
-
 !SequenceableCollection methodsFor:'Compatibility-Squeak'!
 
 allButFirst
@@ -10485,7 +10484,7 @@
     idx1 := firstLine.
     idx2 := lastLine.
     idx1 to:idx2 do:[:lineIndex |
-        lineString := self at:lineIndex.
+        lineString := (self at:lineIndex) asString.
 
         lineString notNil ifTrue:[
             lineString isString ifFalse:[
@@ -10537,7 +10536,7 @@
     "
     pos := 1.
     idx1 to:idx2 do:[:lineIndex |
-        lineString := self at:lineIndex.
+        lineString := (self at:lineIndex) asString.
         thisLen := lineString size.
         thisLen ~~ 0 ifTrue:[
             withEmphasis ifFalse:[
@@ -10696,6 +10695,7 @@
 
     "Created: / 17-06-1998 / 12:30:32 / cg"
     "Modified: / 21-09-2017 / 12:46:43 / stefan"
+    "Modified: / 02-07-2018 / 19:36:58 / Stefan Vogel"
 !
 
 joinWithAll:separatingCollection