Hi Nicolai & Benoit, On Fri, Sep 23, 2016 at 09:54:11PM +0200, Nicolai Hess wrote:
2016-09-23 21:12 GMT+02:00 Benoit St-Jean via Pharo-dev < pharo-dev@lists.pharo.org>:
---------- Weitergeleitete Nachricht ---------- From:Â Benoit St-Jean <bstjean@yahoo.com> To:Â Pharo Development List <pharo-dev@lists.pharo.org> Cc:Â Date:Â Fri, 23 Sep 2016 19:11:20 +0000 (UTC) Subject:Â Problem with accentuated characters I am a bit puzzled by Pharo's (Pharo 5) behavior when having accentuated characters inside a string.
I have a method that sends cascaded messages and it automatically gets "reformated" with a temp variable.
This is the original code I typed and tried to save:
leCarreEtLes4Coins    ^ self new       tiles: #(1 5 7 8 9 12 13 14 17 18 19 21 25);       name: 'Le carré et les 4 coins'
This is how Pharo reformats my code when I save!
leCarreEtLes4Coins    | tmp2 |    tmp2 := self new.    tmp2 tiles: #(1 5 7 8 9 12 13 14 17 18 19 21 25).    ^ tmp2 name: 'Le carré et les 4 coins'
Has anyone seen this behavior?
I can not reproduce this, but it looks like a missing or corrupted changes file.
I've seen this happen once - the first slice I submitted for issue 18990 (https://pharo.fogbugz.com/f/cases/18990/Text-missing-includesSubstring-and-i...) had the same problem.
From memory, the second time I saved the method the source was saved correctly, suggesting that it isn't a corrupted change file issue. This was in Pharo 6.
I haven't seen the issue since, so don't have any more information, unfortunately. Cheers, Alistair