String.st
changeset 17539 a195ade70e76
parent 17378 43606e6237bf
child 17573 1579f53dd422
--- a/String.st	Sat Feb 21 00:59:50 2015 +0100
+++ b/String.st	Sat Feb 21 01:04:46 2015 +0100
@@ -525,7 +525,6 @@
 
 
 
-
 !String methodsFor:'Compatibility-VW5.4'!
 
 asGUID
@@ -541,7 +540,6 @@
     "Modified: / 12-01-2011 / 12:33:58 / cg"
 ! !
 
-
 !String methodsFor:'accessing'!
 
 at:index
@@ -3206,7 +3204,12 @@
 displayString
     "return a string used when displaying the receiver in a view."
 
-    ^ self.
+    ^ super displayString.    
+"/    ^ self storeString.
+
+    "
+     'hello' -> 'hello'
+    "
 !
 
 errorPrint
@@ -4061,14 +4064,13 @@
 
 ! !
 
-
 !String class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.326 2015-02-03 13:56:39 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.327 2015-02-21 00:04:46 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.326 2015-02-03 13:56:39 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/String.st,v 1.327 2015-02-21 00:04:46 cg Exp $'
 ! !