On 31.08.2010 01:32, Eliot Miranda wrote:
Hi Henrik,
�� �twice you write a slip that the compiler should not
allow:
(map
:= characterToGlyphMap)
ifNotNil:
[:map | code := map at: code + 1].
code
:= (map := characterToGlyphMap)
ifNil:
[aCharacter charCode]
ifNotNil:
[:map | map at: aCharacter charCode + 1]
these should read
characterToGlyphMap�ifNotNil:
[:map | code := map at: code + 1].
code
:= characterToGlyphMap
ifNil:
[aCharacter charCode]
ifNotNil:
[:map | map at: aCharacter charCode + 1]
HTH,
Eliot
Hum, unless I posted a previous version, the code in the changeset
was:
characterToGlyphMap ifNotNil: [:map | code := map at: code +1].
and
��� code := characterToGlyphMap
��� ��� ��� ��� ifNotNil: [:map | map at: aCharacter charCode +1]
��� ��� ��� ��� ifNil: [aCharacter charCode].
Seem to me they got decompiled somehow?