Pelles C forum

Pelles C => Bug reports => Topic started by: AlexN on June 16, 2009, 01:16:08 PM

Title: little problem with the description of the IDE option /l
Post by: AlexN on June 16, 2009, 01:16:08 PM
In the description is the option defined with /l langid and langid is a part of the name of the resource file (the english resource file is rsrc0009.dll). In my opion this means for starting the poide in english you need the parameter /l 0009, but this don't work. ;)   
The option which works is /l 9. :)

I would suggest to change the description to make the option little bit clearer or change the behaviour of the IDE. :)
Title: Re: little problem with the description of the IDE option /l
Post by: Pelle on June 16, 2009, 08:27:59 PM
It must start with a hex prefix, like /l 0x0009 (0009 starts with zero, so will be interpreted as octal - 9 isn't a valid octal digit...).
I will change the help file, some day...
Title: Re: little problem with the description of the IDE option /l
Post by: AlexN on July 10, 2009, 10:17:17 PM
Quote from: Pelle on June 16, 2009, 08:27:59 PM
It must start with a hex prefix, like /l 0x0009 (0009 starts with zero, so will be interpreted as octal - 9 isn't a valid octal digit...).
I will change the help file, some day...

Help is now (Pelles C 6.0 RC3) nearly perfect (I miss octal numbers, but this is not so important).

Thanks Pelle !!! :)