We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cff96dc commit 96e28dfCopy full SHA for 96e28df
apps/encodings/conversion.js
@@ -631,7 +631,7 @@ function sjisDecoder (stream) {
631
if ((byte >= 0x40 && byte <= 0x7E) || (byte >= 0x80 && byte <= 0xFC)) ptr = (lead - leadoffset) * 188 + byte - offset
632
if (ptr == null) cp = null
633
else cp = indexes.jis0208[ptr]
634
- if (cp == null && ptr >= 8836 && ptr <= 10528) {
+ if (cp == null && ptr >= 8836 && ptr <= 10715) {
635
temp = 0xE000 + ptr - 8836
636
out += dec2char(temp)
637
continue
0 commit comments