mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-22 16:18:08 +02:00
Fix to lowercase.
This commit is contained in:
parent
e5732f489d
commit
6ab7584ba4
1 changed files with 1 additions and 1 deletions
|
@ -839,7 +839,7 @@ var PostScriptLexer = (function PostScriptLexerClosure() {
|
|||
ch = stream.lookChar();
|
||||
if (ch === null)
|
||||
break;
|
||||
ch.toLowerCase();
|
||||
ch = ch.toLowerCase();
|
||||
if (ch >= 'a' && ch <= 'z')
|
||||
str += ch;
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue