Open GoogleCodeExporter opened 9 years ago
There is a bug in UniversalDetector.cs (around line 152):
} else {
if (inputState == InputState.PureASCII &&
(buf[i] == 0x33 || (buf[i] == 0x7B && lastChar == 0x7E))) {
^^^^^^^^^^^^^^^^
ESC = 27 (decimal) = 33(octal)
0x33 = 51 (decimal) = "3" (ASCII)
// found escape character or HZ "~{"
Original comment by mkk...@gmail.com
on 5 Dec 2014 at 2:46
Original issue reported on code.google.com by
john.bu...@gmail.com
on 14 Sep 2014 at 4:59