aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/print.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-08-21 12:49:29 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-08-21 12:49:29 -0400
commitbe0c07faab159e4c0d924c9656aa2cb47a363bef (patch)
tree34ed0c3c2149452895208ebdaf6a6ab732a75b41 /src/print.sml
parent024d9ab1d554d897787c9d38dc1761ba37a078de (diff)
Queries back to working as well as before, after start of refactoring to support grouping
Diffstat (limited to 'src/print.sml')
-rw-r--r--src/print.sml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.sml b/src/print.sml
index a1efdb96..db6af55c 100644
--- a/src/print.sml
+++ b/src/print.sml
@@ -52,7 +52,7 @@ fun p_list_sep sep f ls =
| x :: rest =>
let
val tokens = foldr (fn (x, tokens) =>
- sep :: f x :: tokens)
+ sep :: PD.cut :: f x :: tokens)
[] rest
in
box (f x :: tokens)