Remove some debugging in math.ldexp() accidentally committed

Sat, 20 Nov 2010 15:19:42 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Sat, 20 Nov 2010 15:19:42 +0000
changeset 100
d20586b6104c
parent 99
633e414a496c
child 101
f1247747f025

Remove some debugging in math.ldexp() accidentally committed

lvm.js file | annotate | diff | comparison | revisions
--- a/lvm.js	Sat Nov 20 15:19:19 2010 +0000
+++ b/lvm.js	Sat Nov 20 15:19:42 2010 +0000
@@ -672,7 +672,6 @@
 var math = {
 	ldexp: function (m, e)
 	{
-		sys.puts("ldexp(): m: "+sys.inspect(m)+" e: "+sys.inspect(e));
 		return [this.LValue(m.value*Math.pow(2, e.value))];
 	},
 	floor: function (x)

mercurial