< prev index next >

src/java.desktop/share/native/libfontmanager/layout/ThaiShaping.cpp

Print this page
rev 16232 : 8170798: Fix minor issues in java2d and sound coding.

*** 300,310 **** for (inputIndex = 0; inputIndex < charCount; inputIndex += 1) { LEUnicode ch = input[inputIndex + offset]; le_uint8 charClass; // Decompose SARA AM into NIKHAHIT + SARA AA ! if (ch == CH_SARA_AM && isLegalHere(ch, state)) { outputIndex = conOutput; state = getNextState(CH_NIKHAHIT, conState, inputIndex, glyphSet, errorChar, charClass, output, glyphStorage, outputIndex); for (int j = conInput + 1; j < inputIndex; j += 1) { --- 300,310 ---- for (inputIndex = 0; inputIndex < charCount; inputIndex += 1) { LEUnicode ch = input[inputIndex + offset]; le_uint8 charClass; // Decompose SARA AM into NIKHAHIT + SARA AA ! if (ch == CH_SARA_AM && isLegalHere(ch, state) && conState < stateCount) { outputIndex = conOutput; state = getNextState(CH_NIKHAHIT, conState, inputIndex, glyphSet, errorChar, charClass, output, glyphStorage, outputIndex); for (int j = conInput + 1; j < inputIndex; j += 1) {
< prev index next >