[squeak-dev] Re: Trunk update error

Raymond Asselin asselinraymond at videotron.ca
Thu Aug 6 16:31:22 UTC 2009


Le 09-08-06 à 12:13, Andreas Raab a écrit :

> StrikeFont allInstances do:[:font|
>  font characterToGlyphMap ifNil:[
>    font characterToGlyphMap: (0 to: 256 collect:[:i| i]).
>  ].
> ].


as #to:collect: does not exist on my system,

StrikeFont allInstances do:[:font|
  font characterToGlyphMap ifNil:[
    font characterToGlyphMap: ((0 to: 256) collect:[:i| i]).
  ].
].
works better...

Thank you very much  this snippet of code solve my problem.
But I still does not understand how that japanese font went there!

This was a super fast answer...  :)





More information about the Squeak-dev mailing list