String.st
branchjv
changeset 18070 d262e3aecaca
parent 18060 3708e12e9aa8
parent 15440 575ddc6530a6
child 18075 bd252c0beac9
--- a/String.st	Fri Jun 28 11:29:14 2013 +0100
+++ b/String.st	Mon Jul 01 22:14:20 2013 +0100
@@ -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 $'
 ! !