From 3103f2168cb798fe44294c33f32d58d0ea4b76af Mon Sep 17 00:00:00 2001 From: Wesley Kerfoot Date: Sun, 22 Dec 2013 15:58:30 -0500 Subject: [PATCH] reverted bug --- tokenize.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tokenize.js b/tokenize.js index 2587b2d..bc9e045 100755 --- a/tokenize.js +++ b/tokenize.js @@ -32,6 +32,7 @@ function tokenizeNum(tokstream, charnum, linenum) { var isFloat = false; var n = 0; // + - + // might want to remove this since it probably won't ever get run? if (code === 43 || code === 45) { // + or - number.push(tokstream[0]); tokstream = tokstream.substr(1);