shithub: mc

Download patch

ref: a091675111887e72d0c910c8d64d97c1b5ae72a5
parent: aa749f4e5b13efc8082720ac14f5c655996f9c12
author: Ori Bernstein <[email protected]>
date: Tue Jun 24 20:09:42 EDT 2014

Fix missing newlines in pretty prints.

--- a/parse/infer.c
+++ b/parse/infer.c
@@ -444,7 +444,7 @@
 
     if (debugopt['u']) {
         s = tystr(t);
-        printf("\tBind %s", s);
+        printf("Bind %s\n", s);
         free(s);
     }
     if (hthas(bt, t->pname))
@@ -466,7 +466,7 @@
         return;
     if (debugopt['u']) {
         s = tystr(t);
-        printf("Binding %s", s);
+        printf("Binding %s\n", s);
         free(s);
     }
     bt = mkht(strhash, streq);