Compiler in 5.1 doesn't parse as before

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Compiler in 5.1 doesn't parse as before

Daniel Rozzeta
Hi all,
Trying Dolphin 5.1 with my application I found this annoying problem:
the compiler gives an 'unrecognised character 'í'' error with the
following method:

AClass>>unfortunateCompilerError

        ^ #día

It worked nicely with 5.0 and I do need those special characters.

Best regards,
Daniel


Reply | Threaded
Open this post in threaded view
|

Re: Compiler in 5.1 doesn't parse as before

Bill Dargel
Daniel Rozzeta wrote:

> Trying Dolphin 5.1 with my application I found this annoying problem:
> the compiler gives an 'unrecognised character 'í'' error with the
> following method:
>
> AClass>>unfortunateCompilerError
>
>         ^ #día
>
> It worked nicely with 5.0 and I do need those special characters.

Yes, see
http://www.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=off&th=7155b91fad65f269&seekm=IxRka.2050%24xd5.117361%40stones.force9.net&frame=off

for some recent discussion on the subject.

I believe that if you use
        ^ #'día'
that it should work.

-------------------------------------------
Bill Dargel            [hidden email]
Shoshana Technologies
100 West Joy Road, Ann Arbor, MI 48105  USA


Reply | Threaded
Open this post in threaded view
|

Re: Compiler in 5.1 doesn't parse as before

Daniel Rozzeta
Bill Dargel wrote:
> I believe that if you use
>         ^ #'día'
> that it should work.

It works now.
Though I did read OA's 5.1 release notes and I found the fix 1182, I
didn't relate it to non ascii characters.  Reading the thread was very
helpful, thanks for pointing it out.

Regards,
Daniel