CharacterArray.st
changeset 7780 ffaeccf9e075
parent 7691 54f25687802d
child 7797 49e53638191f
--- a/CharacterArray.st	Sat Nov 22 22:25:49 2003 +0100
+++ b/CharacterArray.st	Tue Nov 25 18:04:23 2003 +0100
@@ -3891,6 +3891,7 @@
 asText
     "return a Text-object (collection of lines) from myself."
 
+    "this test allows for small non-gui apps to be built without libbasic2 (where Text is)"    
     Text isNil ifTrue:[^ self].
     ^ Text fromString:self
 
@@ -4087,6 +4088,7 @@
 allBold
     "return a test object representing the receiver, but all boldified"
 
+    "this test allows for small non-gui apps to be built without libbasic2 (where Text is)"    
     Text isNil ifTrue:[^ self].
     ^ self asText allBold
 
@@ -4099,6 +4101,7 @@
 allItalic
     "return a test object representing the receiver, but all in italic"
 
+    "this test allows for small non-gui apps to be built without libbasic2 (where Text is)"    
     Text isNil ifTrue:[^ self].
     ^ self asText allItalic
 
@@ -6561,7 +6564,7 @@
 !CharacterArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.262 2003-10-24 16:47:55 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.263 2003-11-25 17:04:23 cg Exp $'
 ! !
 
 CharacterArray initialize!