Revert "extra non printable char" due to github changing new lines

This reverts commit 1f6ecd7ab4.
This commit is contained in:
Michael Plaisted
2021-12-22 13:22:03 -06:00
parent 1f6ecd7ab4
commit 8834bff378

View File

@@ -448,7 +448,7 @@
outputStream.WriteByte((byte)'\\');
outputStream.WriteByte((byte)Escaped[ei]);
}
else if (c < 32 || c > 126) // non printable
else if (c < 32 || c > 127) // non printable
{
var b3 = c / 64;
var b2 = (c - b3 * 64) / 8;