'From Squeakland 3.8.5976 of 25 August 2004 [latest update: #348] on 3 November 2004 at 10:06:26 am'! "Change Set: TTCCharacterFormAtFix-mikki-nk Date: 3 November 2004 Author: Mikael Kindborg Packaged and tested by: Ned Konz As reported by Mikael Kindborg as Squeak bug #0000403, characterFormAt: was missing (it was added to the Squeakland stream). This CS is his fix for both Squeak (where the method was missing) and Squeakland (where the prior version did not use the cached glyph, but re-computed it every time). "! !TTCFont methodsFor: 'character shapes' stamp: 'nk 11/3/2004 10:02'! characterFormAt: character "Answer a Form copied out of the glyphs for the argument, character. Use a cached copy if possible." ^self formOf: character! !