[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Porting Lua to Windows Mobile Professional 6.5.3
- From: Patrick Rapin <toupie300@...>
- Date: Thu, 2 Jun 2011 17:57:32 +0200
> syntax error: [string "return 42"]:1: malformed number near '42ÿ'
The additional 'ÿ' character seems to indicate that the compiler has
added an extra 0xFF byte to the string constant, like if it has stored
"return 42" like this:
72 65 74 75 72 6E 20 34 32 FF 00
Is it possible for you to look at the generated code, or look at the
memory in a debug session?
It looks like there is a compiler bug (happens rarely, but happens...)
or an encoding problem in your source file.
- References:
- Porting Lua to Windows Mobile Professional 6.5.3, Marc Balmer
- Re: Porting Lua to Windows Mobile Professional 6.5.3, Rebel Neurofog
- Re: Porting Lua to Windows Mobile Professional 6.5.3, Marc Balmer
- Re: Porting Lua to Windows Mobile Professional 6.5.3, Reuben Thomas
- Re: Porting Lua to Windows Mobile Professional 6.5.3, Thomas Harning Jr.
- Re: Porting Lua to Windows Mobile Professional 6.5.3, Reuben Thomas
- Re: Porting Lua to Windows Mobile Professional 6.5.3, Luiz Henrique de Figueiredo
- Re: Porting Lua to Windows Mobile Professional 6.5.3, Marc Balmer
- Re: Porting Lua to Windows Mobile Professional 6.5.3, Luiz Henrique de Figueiredo
- Re: Porting Lua to Windows Mobile Professional 6.5.3, Marc Balmer