'From Squeak3.8alpha of ''17 July 2004'' [latest update: #5976] on 16 August 2004 at 10:54:16 am'! "Change Set: TTCSeparatorsGlyphs Date: 16 August 2004 Author: Yoshiki Ohshima Fix the glyphs for seperators."! !TTFontDescription methodsFor: 'migration' stamp: 'yo 8/16/2004 10:44'! blankGlyphForSeparators | space | space _ (self at: Character space charCode) copy. space contours: #(). Character separators do: [:s | glyphTable at: s charCode +1 put: space. ]. ! ! "Postscript: " (TTFontDescription allInstances select: [:e | e familyName beginsWith: 'Bitstream']) do: [:t | t blankGlyphForSeparators. ]. TTCFont allInstances do: [:t | t flushCache]. !