Browse Source

Fix to lowercase.

Brendan Dahl 13 years ago
parent
commit
6ab7584ba4
  1. 2
      src/function.js

2
src/function.js

@ -839,7 +839,7 @@ var PostScriptLexer = (function PostScriptLexerClosure() { @@ -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…
Cancel
Save