diff -r 727346e22474 -r 317f70e84d61 String.st --- a/String.st Tue Jul 13 09:29:34 2004 +0200 +++ b/String.st Tue Jul 13 09:31:03 2004 +0200 @@ -404,6 +404,14 @@ " ! ! +!String class methodsFor:'Compatibility-Dolphin'! + +lineDelimiter + "Dolphin compatibility: answer CR LF" + + ^ self crlf +! ! + !String class methodsFor:'Compatibility-Squeak'! cr @@ -476,6 +484,7 @@ "Modified: 23.4.1996 / 16:00:38 / cg" ! ! + !String methodsFor:'accessing'! at:index @@ -2992,6 +3001,8 @@ ^ String ! ! + + !String methodsFor:'testing'! endsWith:aStringOrChar @@ -3332,9 +3343,8 @@ ! ! - !String class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.207 2004-06-26 12:13:51 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.208 2004-07-13 07:31:03 stefan Exp $' ! !