From 2ee4c82ec8abc8c06e97510d93db105c2c72afd2 Mon Sep 17 00:00:00 2001 From: simonpj Date: Thu, 3 May 2001 09:35:28 +0000 Subject: [PATCH] [project @ 2001-05-03 09:35:28 by simonpj] Correct pretty print of HsIPVar --- ghc/compiler/hsSyn/HsExpr.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/compiler/hsSyn/HsExpr.lhs b/ghc/compiler/hsSyn/HsExpr.lhs index 9400aef..e65e3fc 100644 --- a/ghc/compiler/hsSyn/HsExpr.lhs +++ b/ghc/compiler/hsSyn/HsExpr.lhs @@ -216,7 +216,7 @@ ppr_expr (HsVar v) | isOperator v = parens (ppr v) | otherwise = ppr v -ppr_expr (HsIPVar v) = {- char '?' <> -} ppr v +ppr_expr (HsIPVar v) = char '?' <> ppr v ppr_expr (HsLit lit) = ppr lit ppr_expr (HsOverLit lit) = ppr lit -- 1.7.10.4