diff -r d990195ebf88 -r 347ea0413b68 CharacterArray.st --- a/CharacterArray.st Mon Jul 20 13:11:44 1998 +0200 +++ b/CharacterArray.st Mon Jul 20 13:13:01 1998 +0200 @@ -2048,11 +2048,13 @@ by newChar. This is an ST/V compatibility method." - ^ self copy replaceAll:oldChar with:newChar + ^ self copyReplaceAll:oldChar with:newChar " '12345678901234567890' replChar:$0 with:$* " + + "Modified: / 18.7.1998 / 22:52:57 / cg" ! replChar:oldChar withString:newString @@ -4302,11 +4304,13 @@ "return a new string consisting of receivers characters with all \-characters replaced by cr-characters." - ^ self copy replaceAll:$\ with:(Character cr) + ^ self copyReplaceAll:$\ with:(Character cr) " 'hello\world' withCRs " + + "Modified: / 18.7.1998 / 22:53:02 / cg" ! withEscapes @@ -4580,11 +4584,13 @@ with all cr-characters replaced by \-characters. This is the reverse operation of withCRs." - ^ self copy replaceAll:(Character cr) with:$\ + ^ self copyReplaceAll:(Character cr) with:$\ " 'hello world' withoutCRs " + + "Modified: / 18.7.1998 / 22:53:08 / cg" ! withoutLeadingSeparators @@ -5177,6 +5183,6 @@ !CharacterArray class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.151 1998-07-06 19:59:18 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.152 1998-07-20 11:13:01 cg Exp $' ! ! CharacterArray initialize!