comment/format in:
authorClaus Gittinger <cg@exept.de>
Sat, 10 Oct 2009 14:06:21 +0200
changeset 12196 5718ecf81f37
parent 12195 65f344e48a03
child 12197 c48ecb09d4a0
comment/format in: #bindWithArguments: #writeStream
CharacterArray.st
--- a/CharacterArray.st	Sat Oct 10 11:00:40 2009 +0200
+++ b/CharacterArray.st	Sat Oct 10 14:06:21 2009 +0200
@@ -1259,7 +1259,10 @@
 
     "
      'do you prefer %1 or rather %2 (not talking about %3) ?'
-	bindWithArguments:#('smalltalk' 'c++' 'c')
+        bindWithArguments:#('smalltalk' 'c++' 'c')
+
+     'do you %(what) ?'
+        bindWithArguments:(Dictionary new at:#'what' put:'understand'; yourself)
     "
 !
 
@@ -2972,6 +2975,10 @@
 !
 
 writeStream
+    "return a stream for writing onto the receiver.
+     Redefined to return a CharacterWriteStream which automatically checks for the bytesPerCharacter
+     and replaces the stream-buffer as required."
+
     ^ CharacterWriteStream on:self
 ! !
 
@@ -5696,11 +5703,11 @@
 !CharacterArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.414 2009-10-09 12:12:58 fm Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.415 2009-10-10 12:06:21 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.414 2009-10-09 12:12:58 fm Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.415 2009-10-10 12:06:21 cg Exp $'
 ! !
 
 CharacterArray initialize!