From 6ab7584ba46283f1542567c7424c95ddbe5bdfe9 Mon Sep 17 00:00:00 2001 From: Brendan Dahl Date: Wed, 18 Apr 2012 09:50:47 -0700 Subject: [PATCH] Fix to lowercase. --- src/function.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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