Print replacement character for non-unicode characters as well
mintsuki 2 years ago 01b3069a 41a5256f
··· 1340 1341 if (c >= 0x20 && c <= 0x7e) { 1342 ctx->raw_putchar(ctx, c); 0 0 1343 } 1344 }
··· 1340 1341 if (c >= 0x20 && c <= 0x7e) { 1342 ctx->raw_putchar(ctx, c); 1343 + } else { 1344 + ctx->raw_putchar(ctx, 0xfe); 1345 } 1346 }