Fix printing of @
authorAnders <mortberg@chalmers.se>
Mon, 20 Apr 2015 14:54:38 +0000 (16:54 +0200)
committerAnders <mortberg@chalmers.se>
Mon, 20 Apr 2015 14:54:38 +0000 (16:54 +0200)
CTT.hs

diff --git a/CTT.hs b/CTT.hs
index 3f572e4406d2a52fccc94a4b86ffa844ff4f734f..5b15f7ecedcd90fa6d9be29683f0ba058965c650 100644 (file)
--- a/CTT.hs
+++ b/CTT.hs
@@ -391,7 +391,7 @@ showVal v = case v of
   VSnd u            -> showVal1 u <> text ".2"
   VIdP v0 v1 v2     -> text "IdP" <+> showVals [v0,v1,v2]
   VPath i v         -> char '<' <> text (show i) <> char '>' <+> showVal v
-  VAppFormula v phi -> showVal1 v <+> char '@' <+> showFormula phi
+  VAppFormula v phi -> showVal v <+> char '@' <+> showFormula phi
   VComp v0 v1 vs    -> text "comp" <+> showVals [v0,v1] <+> text (showSystem vs)
   VTrans v0 v1      -> text "trans" <+> showVals [v0,v1]
   VGlue a ts        -> text "glue" <+> showVal1 a <+> text (showSystem ts)