Fixed a few bugs

This commit is contained in:
ceriel
1990-10-31 15:56:51 +00:00
parent 162c1c81e9
commit 9aee9cb62f
7 changed files with 48 additions and 12 deletions

View File

@@ -72,6 +72,7 @@ static int
print_char(c)
int c;
{
c &= 0377;
fprintf(db_out, (c >= 040 && c < 0177) ? "'%c'" : "%oC", c);
}