changed: #indexOfSubCollection:startingAt:ifAbsent:caseSensitive:
authorClaus Gittinger <cg@exept.de>
Tue, 16 Oct 2012 13:56:40 +0200
changeset 14384 1082868a753c
parent 14383 3422e309ea8a
child 14385 1bb6b27c59f9
changed: #indexOfSubCollection:startingAt:ifAbsent:caseSensitive:
String.st
--- a/String.st	Fri Oct 12 12:36:21 2012 +0200
+++ b/String.st	Tue Oct 16 13:56:40 2012 +0200
@@ -495,6 +495,7 @@
 ! !
 
 
+
 !String class methodsFor:'queries'!
 
 defaultPlatformClass
@@ -514,6 +515,7 @@
     "Modified: 23.4.1996 / 16:00:38 / cg"
 ! !
 
+
 !String methodsFor:'Compatibility-VW5.4'!
 
 asGUID
@@ -2641,6 +2643,7 @@
     ^ super simpleDeepCopy
 ! !
 
+
 !String methodsFor:'filling & replacing'!
 
 atAllPut:aCharacter
@@ -3384,7 +3387,7 @@
 
     |notFound|
 
-%{
+%{  /* STACK:4000 */
     if (__isStringLike(self) 
      && __isStringLike(aSubString)
      && (caseSensitive == true)
@@ -3857,9 +3860,9 @@
 !String class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.291 2012-09-14 13:31:18 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.292 2012-10-16 11:56:40 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.291 2012-09-14 13:31:18 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.292 2012-10-16 11:56:40 cg Exp $'
 ! !