Jean-Marc Lasgouttes wrote:

> Good. Does it apply to 1.4 too, or is it an unicode problem?

It is an unicode problem: If char is signed, then the following will produce
an invalid character:

char           c1 = 185; //¹     SUPERSCRIPT ONE (in latin1 and ucs4)
lyx::char_type c2 = 185; //¹     SUPERSCRIPT ONE (in latin1 and ucs4)
lyx::char_type c2 = c1; // invalid, not SUPERSCRIPT ONE


Georg

Reply via email to