Skip to content

Commit

Permalink
CLDR-17063 CLDRModify -fQ keyword draft-status bug fix, use fullpath
Browse files Browse the repository at this point in the history
-CLDRModify.CLDRFilter.replace requires fullpath, otherwise draft-status is lost
  • Loading branch information
btangmu committed Oct 3, 2023
1 parent 6cef7be commit ceda861
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2118,7 +2118,8 @@ private void rememberKeywordPaths(String xpath) {
String type = parts.getAttributeValue(2, "type");
if (type == null) { // not type="tts"
String cp = parts.getAttributeValue(2, "cp");
keywordPaths.put(cp, xpath);
keywordPaths.put(
cp, fullpath /* not xpath; preserve status="..." */);
}
}
}
Expand Down

0 comments on commit ceda861

Please sign in to comment.