shithub: mc

Download patch

ref: 673032b9d80278ccd16b5152c98cfd252e083bdb
parent: 571472a78619e3314aaf8e95be4f70cea1ef51a8
author: Ori Bernstein <ori@eigenstate.org>
date: Wed Feb 8 18:36:23 EST 2017

Remove debug prints.

--- a/lib/json/parse.myr
+++ b/lib/json/parse.myr
@@ -350,7 +350,6 @@
 }
 
 const unescaped = {c
-	std.put("{x}\n", (c : uint32))
 	-> c == 0x20 || c == 0x21 || \
 		(c >= 0x23 && c < 0x5b) || \
 		(c > 0x5d && c <= 0x10ffff)
@@ -393,7 +392,6 @@
 }
 
 const enter = {p
-	std.put("depth: {}, max: {}\n", p.depth, Maxdepth)
 	p.depth++
 	-> p.depth <= Maxdepth
 }