Removed debug printf

This commit is contained in:
Justin Ethier 2015-03-13 16:41:05 -04:00
parent a8bf11bf79
commit eb3dbfbfec

View file

@ -639,7 +639,6 @@ static object Cyc_write(x) object x;
{object tmp = nil;
if (nullp(x)) {printf("()\n"); return x;}
if (obj_is_char(x)) {printf("#\\%c\n", obj_obj2char(x)); return x;}
printf("[DEBUG: %p]", x); // DEBUGGING LINE!!
switch (type_of(x))
{case string_tag:
printf("\"%s\"", ((string_type *) x)->str);