[Pkg-javascript-commits] [pdf.js] 28/56: Fixes invalid CFF name for Mac OSX
David Prévot
taffit at moszumanska.debian.org
Thu May 15 15:17:45 UTC 2014
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository pdf.js.
commit 9a5c121e4d04e020a25e51614b6fb2999309a847
Author: Yury Delendik <ydelendik at mozilla.com>
Date: Thu Apr 17 10:50:06 2014 -0500
Fixes invalid CFF name for Mac OSX
---
src/core/fonts.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/core/fonts.js b/src/core/fonts.js
index 4f24b10..5cea7df 100644
--- a/src/core/fonts.js
+++ b/src/core/fonts.js
@@ -5880,7 +5880,7 @@ var CFFParser = (function CFFParserClosure() {
if ((c < 33 || c > 126) || c === 91 /* [ */ || c === 93 /* ] */ ||
c === 40 /* ( */ || c === 41 /* ) */ || c === 123 /* { */ ||
c === 125 /* } */ || c === 60 /* < */ || c === 62 /* > */ ||
- c === 47 /* / */ || c === 37 /* % */) {
+ c === 47 /* / */ || c === 37 /* % */ || c === 35 /* # */) {
data[j] = 95;
continue;
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/pdf.js.git
More information about the Pkg-javascript-commits
mailing list