String.st
changeset 15440 575ddc6530a6
parent 15262 5047292c9107
child 15525 0a0baff63fd0
child 18070 d262e3aecaca
--- a/String.st	Thu Jun 27 17:33:40 2013 +0200
+++ b/String.st	Thu Jun 27 23:01:02 2013 +0200
@@ -3070,8 +3070,8 @@
 
 %{  /* NOCONTEXT */
 
-    if (__qIsStringLike(self)) {
-	if (@global(Stderr) == nil) {
+    if (@global(Stderr) == nil) {
+        if (__qIsStringLike(self)) {
 	    console_fprintf(stderr, "%s" , __stringVal(self));
 	    console_fflush(stderr);
 	    RETURN (self);
@@ -3095,8 +3095,8 @@
 
 %{  /* NOCONTEXT */
 
-    if (__qIsStringLike(self)) {
-	if (@global(Stderr) == nil) {
+    if (@global(Stderr) == nil) {
+        if (__qIsStringLike(self)) {
 	    console_fprintf(stderr, "%s\n" , __stringVal(self));
 	    console_fflush(stderr);
 	    RETURN (self);
@@ -3113,8 +3113,8 @@
 
 %{  /* NOCONTEXT */
 
-    if (__qIsStringLike(self)) {
-	if (@global(Stdout) == nil) {
+    if (@global(Stdout) == nil) {
+        if (__qIsStringLike(self)) {
 	    console_fprintf(stdout, "%s" , __stringVal(self));
 	    console_fflush(stdout);
 	    RETURN (self);
@@ -3131,8 +3131,8 @@
 
 %{  /* NOCONTEXT */
 
-    if (__qIsStringLike(self)) {
-	if (@global(Stdout) == nil) {
+    if (@global(Stdout) == nil) {
+        if (__qIsStringLike(self)) {
 	    console_fprintf(stdout, "%s\n" , __stringVal(self));
 	    console_fflush(stdout);
 	    RETURN (self);
@@ -3895,10 +3895,10 @@
 !String class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.305 2013-05-21 20:44:47 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.306 2013-06-27 21:01:02 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.305 2013-05-21 20:44:47 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.306 2013-06-27 21:01:02 cg Exp $'
 ! !