diff --git a/src/function.js b/src/function.js index d16805b52..56b405ede 100644 --- a/src/function.js +++ b/src/function.js @@ -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