[when printing ho files, print to stdout and put blank lines in between functions
John Meacham <john@repetae.net>**20061223050232] hunk ./Ho/Build.hs 232
-        mapM_ (\ (v,lc) -> printCheckName'' (hoDataTable ho) v lc) (melems $ hoEs ho)
+        mapM_ (\ (v,lc) -> putChar '\n' >> printCheckName'' (hoDataTable ho) v lc) (melems $ hoEs ho)
hunk ./Ho/Build.hs 236
-        when (dump FD.EInfo || verbose2) $ putErrLn (show $ tvrInfo tvr)
-        putErrLn (render $ hang 4 (pprint tvr <+> text "::" <+> pprint (tvrType tvr)))
-        putErrLn (render $ hang 4 (pprint tvr <+> equals <+> pprint e))
+        when (dump FD.EInfo || verbose2) $ putStrLn (show $ tvrInfo tvr)
+        putStrLn (render $ hang 4 (pprint tvr <+> text "::" <+> pprint (tvrType tvr)))
+        putStrLn (render $ hang 4 (pprint tvr <+> equals <+> pprint e))