diff --git a/src/scratchpad/src/org/apache/poi/hwpf/sprm/CharacterSprmUncompressor.java b/src/scratchpad/src/org/apache/poi/hwpf/sprm/CharacterSprmUncompressor.java index bc3b798d4..423b56930 100644 --- a/src/scratchpad/src/org/apache/poi/hwpf/sprm/CharacterSprmUncompressor.java +++ b/src/scratchpad/src/org/apache/poi/hwpf/sprm/CharacterSprmUncompressor.java @@ -631,8 +631,19 @@ public final class CharacterSprmUncompressor extends SprmUncompressor // sprmCRgLid0 break; case 0x74: - // sprmCRgLid1 - break; + // sprmCRgLid1 + break; + case 0x75: + // sprmCFNoProof -- 0x875 + /* + * "A ToggleOperand value that specifies whether the text is excluded from the proofing analysis. By default, text is not excluded from the proofing analysis." + * + * Word (.doc) Binary File Format. Copyright (c) 2012 Microsoft + * Corporation. Released: October 8, 2012 + */ + newCHP.setFNoProof(getCHPFlag((byte) sprm.getOperand(), + oldCHP.isFNoProof())); + break; default: logger.log( POILogger.DEBUG, "Unknown CHP sprm ignored: " + sprm ); break;