# HG changeset patch # User Stefan Vogel # Date 1341907100 -7200 # Node ID ceb0f5faf56524b3fa630e320ab93c4703f350cd # Parent 8b58c9e08f9e72a966a4730efe77a8e11dbda76a changed: #initializeCharacterEncodingToCharacterSetMapping #initializeCharacterSetToFontMapping diff -r 8b58c9e08f9e -r ceb0f5faf565 FontDescription.st --- a/FontDescription.st Tue May 15 14:36:29 2012 +0200 +++ b/FontDescription.st Tue Jul 10 09:58:20 2012 +0200 @@ -111,6 +111,8 @@ #'utf-7' unicode utf8 unicode #'utf-8' unicode + #utf16be unicode + #utf16le unicode ). ]. ! @@ -120,7 +122,7 @@ CharacterSetToFontMapping isNil ifTrue:[ CharacterSetToFontMapping := Dictionary withKeysAndValues: #( - unicode 'iso10646-*' + unicode 'iso10646-1' 'koi8-r' 'iso8859-5' @@ -1525,11 +1527,11 @@ !FontDescription class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libview/FontDescription.st,v 1.78 2012-04-25 16:58:41 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libview/FontDescription.st,v 1.79 2012-07-10 07:58:20 stefan Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libview/FontDescription.st,v 1.78 2012-04-25 16:58:41 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libview/FontDescription.st,v 1.79 2012-07-10 07:58:20 stefan Exp $' ! ! FontDescription initialize!