mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-12766 fix to escaper for z/OS - all compiles now!
X-SVN-Rev: 39936
This commit is contained in:
parent
e20856d499
commit
b58e1721a1
3 changed files with 5 additions and 0 deletions
|
@ -251,6 +251,9 @@ bool fixAt(std::string &linestr, size_t pos) {
|
|||
int32_t trail = U8_COUNT_TRAIL_BYTES(linestr[pos]);
|
||||
for(size_t pos2 = pos+1; trail>0; pos2++,trail--) {
|
||||
linestr[pos2] = cp1047_to_8859(linestr[pos2]);
|
||||
if(linestr[pos2] == 0x0A) {
|
||||
linestr[pos2] = 0x85; // NL is ambiguous here
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
u"sa\u0127\u0127a";
|
||||
u'\u6587';
|
||||
u"\U000219F2";
|
||||
u"\u039C\u03C5\u03C3\u03C4\u03AE\u03C1\u03B9\u03BF";
|
||||
|
||||
u"sa\u0127\u0127a";
|
||||
u'\u6587'; u"\U000219F2";
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
u"saħħa";
|
||||
u'文';
|
||||
u"𡧲";
|
||||
u"Μυστήριο";
|
||||
|
||||
u"saħħa";
|
||||
u'文'; u"𡧲";
|
||||
|
|
Loading…
Add table
Reference in a new issue