* p-lang.c (pascal_one_char): Do not restrict C to 0..255 range.

This commit is contained in:
Pierre Muller 2010-04-16 08:12:59 +00:00
parent 711e434b39
commit 9b79b476a6
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
* p-lang.c (pascal_one_char): Do not restrict C to 0..255 range.
2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
Support for Windows OS Thread Information Block.

View File

@ -158,9 +158,7 @@ static void
pascal_one_char (int c, struct ui_file *stream, int *in_quotes)
{
c &= 0xFF; /* Avoid sign bit follies */
if ((c == '\'') || (PRINT_LITERAL_FORM (c)))
if (c == '\'' || ((unsigned int) c <= 0xff && (PRINT_LITERAL_FORM (c))))
{
if (!(*in_quotes))
fputs_filtered ("'", stream);