changed: #errorPrintCR
authorStefan Vogel <sv@exept.de>
Fri, 14 Sep 2012 15:31:18 +0200
changeset 14353 97611faada84
parent 14352 05f58f74fa80
child 14354 4a571b9eb43c
changed: #errorPrintCR
String.st
--- a/String.st	Tue Sep 11 10:02:19 2012 +0200
+++ b/String.st	Fri Sep 14 15:31:18 2012 +0200
@@ -495,7 +495,6 @@
 ! !
 
 
-
 !String class methodsFor:'queries'!
 
 defaultPlatformClass
@@ -515,7 +514,6 @@
     "Modified: 23.4.1996 / 16:00:38 / cg"
 ! !
 
-
 !String methodsFor:'Compatibility-VW5.4'!
 
 asGUID
@@ -2643,7 +2641,6 @@
     ^ super simpleDeepCopy
 ! !
 
-
 !String methodsFor:'filling & replacing'!
 
 atAllPut:aCharacter
@@ -3064,7 +3061,7 @@
 
 %{  /* NOCONTEXT */
 
-    if (__isStringLike(self) == String) {
+    if (__isStringLike(self)) {
         if (@global(Stderr) == nil) {
             console_fprintf(stderr, "%s\n" , __stringVal(self));
             console_fflush(stderr);
@@ -3860,9 +3857,9 @@
 !String class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.290 2012-08-23 15:47:22 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.291 2012-09-14 13:31:18 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.290 2012-08-23 15:47:22 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.291 2012-09-14 13:31:18 stefan Exp $'
 ! !