quick fix for JSMin build

This commit is contained in:
Franck Marcia 2006-09-04 19:58:06 +00:00
parent 97ea47492f
commit 6346e5d1c2

View file

@ -308,9 +308,9 @@ function jsmin(comment, input, level) {
} }
jsmin.oldSize = input.length; jsmin.oldSize = input.length;
ret = m(input); var r = m(input);
jsmin.newSize = ret.length; jsmin.newSize = r.length;
return comment + ret; return comment + r;
} }