Merge pull request #4641 from yurydelendik/cffname
Fixes invalid CFF name for Mac OSX
This commit is contained in:
commit
4379f16346
@ -5880,7 +5880,7 @@ var CFFParser = (function CFFParserClosure() {
|
|||||||
if ((c < 33 || c > 126) || c === 91 /* [ */ || c === 93 /* ] */ ||
|
if ((c < 33 || c > 126) || c === 91 /* [ */ || c === 93 /* ] */ ||
|
||||||
c === 40 /* ( */ || c === 41 /* ) */ || c === 123 /* { */ ||
|
c === 40 /* ( */ || c === 41 /* ) */ || c === 123 /* { */ ||
|
||||||
c === 125 /* } */ || c === 60 /* < */ || c === 62 /* > */ ||
|
c === 125 /* } */ || c === 60 /* < */ || c === 62 /* > */ ||
|
||||||
c === 47 /* / */ || c === 37 /* % */) {
|
c === 47 /* / */ || c === 37 /* % */ || c === 35 /* # */) {
|
||||||
data[j] = 95;
|
data[j] = 95;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user