[Made verbose output of +accum more readable
tobias@goedderz.info**20150313121218
 Ignore-this: a7a9a2564d83af3544ff43344e949159
] hunk ./src/Igor2/RuleDevelopment/Accumulator.hs 6
-import Data.List (foldl1', isPrefixOf)
+import Data.List (foldl1', isPrefixOf, intersperse)
hunk ./src/Igor2/RuleDevelopment/Accumulator.hs 20
-import Igor2.Ppr ((<+>), (<$>), pretty, text, cat, punctuate, squotes)
+import Igor2.Ppr ((<+>), (<$>), (<//>), empty, char, pretty, text, cat, punctuate, squotes)
hunk ./src/Igor2/RuleDevelopment/Accumulator.hs 83
-                        $ map (cat . punctuate (text "*") . map pretty)
+                        $ map (foldr (<//>) empty . intersperse (char '*') . map pretty)