From 24d5b025239f22d53e21fbce7658d034e22682a9 Mon Sep 17 00:00:00 2001 From: aarne Date: Mon, 30 May 2005 15:22:42 +0000 Subject: [PATCH] a dialogue resource started --- src/GF/Source/PrintGF.hs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/GF/Source/PrintGF.hs b/src/GF/Source/PrintGF.hs index a0bc469ae..e793e7d94 100644 --- a/src/GF/Source/PrintGF.hs +++ b/src/GF/Source/PrintGF.hs @@ -347,7 +347,6 @@ instance Print Exp where EProj exp label -> prPrec i 3 (concatD [prt 3 exp , doc (showString ".") , prt 0 label]) EQConstr id0 id -> prPrec i 3 (concatD [doc (showString "{0") , prt 0 id0 , doc (showString ".") , prt 0 id , doc (showString "}0")]) -- H EQCons id0 id -> prPrec i 3 (concatD [doc (showString "%") , prt 0 id0 , doc (showString ".") , prt 0 id]) - EQCons id0 id -> prPrec i 3 (concatD [doc (showString "%") , prt 0 id0 , doc (showString ".") , prt 0 id , doc (showString "%")]) EApp exp0 exp -> prPrec i 2 (concatD [prt 2 exp0 , prt 3 exp]) ETable cases -> prPrec i 2 (concatD [doc (showString "table") , doc (showString "{") , prt 0 cases , doc (showString "}")]) ETTable exp cases -> prPrec i 2 (concatD [doc (showString "table") , prt 4 exp , doc (showString "{") , prt 0 cases , doc (showString "}")])