[Pkg-javascript-commits] [pdf.js] 45/116: Prevent setting |isStandardFont| to |undefined| for non-embedded fonts
David Prévot
taffit at moszumanska.debian.org
Fri Mar 6 16:19:59 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository pdf.js.
commit c2c54257f23588b33635213bd9820d4c3b4339ac
Author: Jonas Jenwald <jonas.jenwald at gmail.com>
Date: Tue Jan 13 15:36:48 2015 +0100
Prevent setting |isStandardFont| to |undefined| for non-embedded fonts
This is a very small follow-up to PR 5536, which sets `isStandardFont` to `false` instead of `undefined` (as currently happens for some font names).
Since the patch is so small, I hope it's OK to also fix an unrelated copy-and-paste error in a comment that was added in PR 5260.
---
src/core/fonts.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/core/fonts.js b/src/core/fonts.js
index bd2850f..9542db8 100644
--- a/src/core/fonts.js
+++ b/src/core/fonts.js
@@ -523,7 +523,7 @@ var SpecialPUASymbols = {
'63731': 0x23A9, // braceleftbt (0xF8F3)
'63740': 0x23AB, // bracerighttp (0xF8FC)
'63741': 0x23AC, // bracerightmid (0xF8FD)
- '63742': 0x23AD, // bracerightmid (0xF8FE)
+ '63742': 0x23AD, // bracerightbt (0xF8FE)
'63726': 0x23A1, // bracketlefttp (0xF8EE)
'63727': 0x23A2, // bracketleftex (0xF8EF)
'63728': 0x23A3, // bracketleftbt (0xF8F0)
@@ -2463,7 +2463,7 @@ var Font = (function FontClosure() {
// to be used with the canvas.font.
var fontName = name.replace(/[,_]/g, '-');
var isStandardFont = !!stdFontMap[fontName] ||
- (nonStdFontMap[fontName] && !!stdFontMap[nonStdFontMap[fontName]]);
+ !!(nonStdFontMap[fontName] && stdFontMap[nonStdFontMap[fontName]]);
fontName = stdFontMap[fontName] || nonStdFontMap[fontName] || fontName;
this.bold = (fontName.search(/bold/gi) !== -1);
--
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