aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/elab_print.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-07-22 18:46:04 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-07-22 18:46:04 -0400
commit6c5b16aa47eeb84d5f6ee9fc6cb265424e63f74c (patch)
tree51ff2855edcd09b36ce549bdb2bf91cd4d2c5caa /src/elab_print.sml
parentcedc70524a84b860f438078c8abc6f1aa0557994 (diff)
Meta-programming forms
Diffstat (limited to 'src/elab_print.sml')
-rw-r--r--src/elab_print.sml22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/elab_print.sml b/src/elab_print.sml
index 1da98c7a..81cbae69 100644
--- a/src/elab_print.sml
+++ b/src/elab_print.sml
@@ -125,17 +125,17 @@ fun p_con' par env (c, _) =
| CApp (c1, c2) => parenIf par (box [p_con env c1,
space,
p_con' true env c2])
- | CAbs (x, k, c) => parenIf par (box [string "fn",
- space,
- string x,
- space,
- string "::",
- space,
- p_kind k,
- space,
- string "=>",
- space,
- p_con (E.pushCRel env x k) c])
+ | CAbs (x, k, c) => parenIf true (box [string "fn",
+ space,
+ string x,
+ space,
+ string "::",
+ space,
+ p_kind k,
+ space,
+ string "=>",
+ space,
+ p_con (E.pushCRel env x k) c])
| CDisjoint (c1, c2, c3) => parenIf par (box [p_con env c1,
space,
string "~",