CharacterArray.st
changeset 14637 9ba33c37bdd6
parent 14631 501217c542a5
child 14641 507dd4be1798
--- a/CharacterArray.st	Wed Jan 09 12:15:03 2013 +0100
+++ b/CharacterArray.st	Wed Jan 09 13:48:49 2013 +0100
@@ -326,6 +326,7 @@
     "
 ! !
 
+
 !CharacterArray class methodsFor:'pattern matching'!
 
 matchEscapeCharacter
@@ -677,6 +678,7 @@
     ^ self == CharacterArray
 ! !
 
+
 !CharacterArray methodsFor:'Compatibility-ANSI'!
 
 addLineDelimiters
@@ -1994,7 +1996,7 @@
 "/ Sorry, stc cannot compile this (as of 10.9.2007)
 "/        h := (h bitShift:4) + char asciiValue.
         h := (h bitShift:4).
-        h:= h + char codePoint.
+        h := h + char codePoint.
         h := h bitAnd:16rFFFFFFFF.
         g := (h bitAnd: 16rF0000000).
         g ~~ 0 ifTrue:[
@@ -4311,6 +4313,7 @@
 ! !
 
 
+
 !CharacterArray methodsFor:'padded copying'!
 
 centerPaddedTo:newSize
@@ -4835,6 +4838,7 @@
     "Modified: 17.4.1997 / 12:50:23 / cg"
 ! !
 
+
 !CharacterArray methodsFor:'special string converting'!
 
 expandPlaceholdersWith:argArrayOrDictionary
@@ -5639,6 +5643,7 @@
     "
 ! !
 
+
 !CharacterArray methodsFor:'substring searching'!
 
 findString:subString
@@ -6130,11 +6135,11 @@
 !CharacterArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.487 2013-01-04 16:19:30 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.488 2013-01-09 12:48:49 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.487 2013-01-04 16:19:30 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.488 2013-01-09 12:48:49 stefan Exp $'
 ! !