class: CharacterSet
authorClaus Gittinger <cg@exept.de>
Sun, 28 Dec 2014 15:08:18 +0100
changeset 3460 d965c11358b7
parent 3459 c479aa5988ea
child 3461 f4ff6526ac02
class: CharacterSet comment/format in: #addAllSingleByteCharacters
CharacterSet.st
--- a/CharacterSet.st	Wed Dec 24 13:49:58 2014 +0100
+++ b/CharacterSet.st	Sun Dec 28 15:08:18 2014 +0100
@@ -150,7 +150,7 @@
 !CharacterSet methodsFor:'initialization'!
 
 addAllSingleByteCharacters
-    bits := ByteArray new:(256 / 8) withAll:16rFF.
+    bits := ByteArray new:"(256 / 8)"32 withAll:16rFF.
 
     "
      self assert:(
@@ -239,10 +239,10 @@
 !CharacterSet class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/CharacterSet.st,v 1.4 2014-12-24 12:49:58 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/CharacterSet.st,v 1.5 2014-12-28 14:08:18 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/CharacterSet.st,v 1.4 2014-12-24 12:49:58 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/CharacterSet.st,v 1.5 2014-12-28 14:08:18 cg Exp $'
 ! !