Merge pull request #4641 from yurydelendik/cffname

Fixes invalid CFF name for Mac OSX
This commit is contained in:
Yury Delendik 2014-04-17 11:19:26 -05:00
commit 4379f16346

View File

@ -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;
} }