summaryrefslogtreecommitdiff
path: root/src/compiler/GF/Grammar/Printer.hs
diff options
context:
space:
mode:
authorkrasimir <krasimir@chalmers.se>2010-01-31 15:54:25 +0000
committerkrasimir <krasimir@chalmers.se>2010-01-31 15:54:25 +0000
commitbe6465a2ebb1aba43433cff29bf5bad6e2065e26 (patch)
tree8702aca1395dbf3f91379eb73378badf1742db5c /src/compiler/GF/Grammar/Printer.hs
parentacd927f87bfcc9b1a3b9f38371239adf27a3bf6b (diff)
refactor GF.Infra.Modules for better error messages
Diffstat (limited to 'src/compiler/GF/Grammar/Printer.hs')
-rw-r--r--src/compiler/GF/Grammar/Printer.hs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/compiler/GF/Grammar/Printer.hs b/src/compiler/GF/Grammar/Printer.hs
index 06cac9705..996a7a807 100644
--- a/src/compiler/GF/Grammar/Printer.hs
+++ b/src/compiler/GF/Grammar/Printer.hs
@@ -9,7 +9,6 @@
module GF.Grammar.Printer
( TermPrintQual(..)
- , ppIdent
, ppLabel
, ppModule
, ppJudgement
@@ -256,8 +255,6 @@ ppDDecl q (_,id,typ)
| id == identW = ppTerm q 6 typ
| otherwise = parens (ppIdent id <+> colon <+> ppTerm q 0 typ)
-ppIdent = text . showIdent
-
ppQIdent q m id =
case q of
Qualified -> ppIdent m <> char '.' <> ppIdent id