HashStream.st
changeset 19399 e51189dbeba1
parent 19165 87e7d17b96e1
child 19412 1e842c25e51e
child 19439 6015d8264192
--- a/HashStream.st	Tue Mar 22 12:52:45 2016 +0100
+++ b/HashStream.st	Tue Mar 22 13:43:57 2016 +0100
@@ -398,8 +398,8 @@
     ].
 
     anObject isCharacter ifTrue:[
-        "/ only ascii allowed !!
-        self nextPutBytes:(ByteArray with:anObject codePoint).
+        "/ only 8bit chars are allowed !!
+        self nextPutBytes:1 from:(ByteArray with:anObject codePoint) startingAt:1.
         ^ self.
     ].