diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-10-31 09:30:22 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-10-31 09:30:22 -0400 |
commit | 389aae9254a3bdee3e79bb75b7355de270f2e8dd (patch) | |
tree | 81322ab53b15b0d76854756431ac4c662825ad59 /src/source_print.sml | |
parent | 565f72b0d162990dcfcb91873102915bf8b9b3d7 (diff) |
Replace 'with' with '++'
Diffstat (limited to 'src/source_print.sml')
-rw-r--r-- | src/source_print.sml | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/source_print.sml b/src/source_print.sml index f9fc8a53..a25be2d4 100644 --- a/src/source_print.sml +++ b/src/source_print.sml @@ -258,13 +258,11 @@ fun p_exp' par (e, _) = | EField (e, c) => box [p_exp' true e, string ".", p_con' true c] - | EWith (e1, c, e2) => parenIf par (box [p_exp e1, - space, - string "with", - space, - p_con' true c, - space, - p_exp' true e2]) + | EConcat (e1, e2) => parenIf par (box [p_exp' true e1, + space, + string "++", + space, + p_exp' true e2]) | ECut (e, c) => parenIf par (box [p_exp' true e, space, string "--", |