Browse Source

Nit: Rename 's' by 'charcode'

notmasteryet 14 years ago
parent
commit
5ec177d88e
  1. 4
      fonts.js

4
fonts.js

@ -2565,9 +2565,9 @@ var Type2CFF = (function type2CFF() {
} }
if (!inDifferences) { if (!inDifferences) {
var code = properties.firstChar + i; var code = properties.firstChar + i;
for (var s in encoding) { for (var charcode in encoding) {
if (encoding[s] == i) { if (encoding[s] == i) {
code = s | 0; code = charcode | 0;
break; break;
} }
} }

Loading…
Cancel
Save