encoding stuff
authorClaus Gittinger <cg@exept.de>
Fri, 06 Feb 2004 11:41:15 +0100
changeset 7882 6e1883fa220d
parent 7881 26b22247f5f1
child 7883 1039acd0624b
encoding stuff
CharacterArray.st
--- a/CharacterArray.st	Fri Feb 06 11:35:00 2004 +0100
+++ b/CharacterArray.st	Fri Feb 06 11:41:15 2004 +0100
@@ -5163,10 +5163,10 @@
 
 encoding
     "return the strings encoding, as a symbol.
-     Here, by default, we assume #iso8859 encoding.
+     Here, by default, we assume #iso8859-1 (latin1) encoding.
      This has to be redefined in XXXEncodedString subclasses."
 
-    ^ #iso8859
+    ^ #'iso8859-1'
 
     "Modified: 27.4.1996 / 13:23:49 / cg"
 !
@@ -6636,7 +6636,7 @@
 !CharacterArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.268 2004-02-06 09:03:12 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.269 2004-02-06 10:41:15 cg Exp $'
 ! !
 
 CharacterArray initialize!