1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

Fix review comments for #436

This commit is contained in:
Vivien Nicolas 2011-09-06 02:28:06 +02:00
parent 83f930abd6
commit f7ee90cc8c
2 changed files with 2 additions and 2 deletions

2
pdf.js
View file

@ -4304,7 +4304,7 @@ var PartialEvaluator = (function() {
var index = GlyphsUnicode[glyph] || i;
glyphsMap[glyph] = encodingMap[i] = index;
if (index <= 0x1f || (index >= 128 && code <= 255))
if (index <= 0x1f || (index >= 127 && index <= 255))
glyphsMap[glyph] = encodingMap[i] += kCmapGlyphOffset;
}
}