mirror of https://github.com/adamdruppe/arsd.git
Merge branch 'master' of github.com:adamdruppe/arsd
This commit is contained in:
commit
a7d5c43c51
|
@ -2050,22 +2050,17 @@ class TerminalEmulator {
|
||||||
// one byte thing, do nothing more...
|
// one byte thing, do nothing more...
|
||||||
} else {
|
} else {
|
||||||
// the number of bytes in the sequence is the number of set bits in the first byte...
|
// the number of bytes in the sequence is the number of set bits in the first byte...
|
||||||
uint shifted = 0;
|
|
||||||
bool there = false;
|
|
||||||
ubyte checkingBit = 7;
|
ubyte checkingBit = 7;
|
||||||
while(checkingBit) {
|
while(b & (1 << checkingBit)) {
|
||||||
if(!there && b & (1 << checkingBit))
|
|
||||||
utf8BytesRemaining++;
|
utf8BytesRemaining++;
|
||||||
else
|
|
||||||
there = true;
|
|
||||||
if(there)
|
|
||||||
shifted |= b & (1 << checkingBit);
|
|
||||||
checkingBit--;
|
checkingBit--;
|
||||||
}
|
}
|
||||||
|
uint shifted = b & ((1 << checkingBit) - 1);
|
||||||
utf8BytesRemaining--; // since this current byte counts too
|
utf8BytesRemaining--; // since this current byte counts too
|
||||||
currentUtf8Shift = utf8BytesRemaining * 6;
|
currentUtf8Shift = utf8BytesRemaining * 6;
|
||||||
|
|
||||||
shifted <<= (currentUtf8Shift + checkingBit);
|
|
||||||
|
shifted <<= currentUtf8Shift;
|
||||||
utf8Sequence = cast(dchar) shifted;
|
utf8Sequence = cast(dchar) shifted;
|
||||||
|
|
||||||
utf8SequenceBufferPosition = 0;
|
utf8SequenceBufferPosition = 0;
|
||||||
|
|
Loading…
Reference in New Issue