Skip to content

Commit

Permalink
CLDR-17063 CLDRModify -fQ keyword draft-status bug fix, use fullpath (u…
Browse files Browse the repository at this point in the history
…nicode-org#3307)

-CLDRModify.CLDRFilter.replace requires fullpath, otherwise draft-status is lost
  • Loading branch information
btangmu authored Oct 3, 2023
1 parent 2dd770a commit 05055fe
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 05055fe

Please sign in to comment.