aboutsummaryrefslogtreecommitdiff
path: root/src/PrettyPrint.hs
diff options
context:
space:
mode:
authorpanne <unknown>2005-01-16 14:37:10 +0000
committerpanne <unknown>2005-01-16 14:37:10 +0000
commit951d840870e67b452387b35c72d235511ed9163c (patch)
treec62b706cbe5de938a995073cc15e8e463b581fce /src/PrettyPrint.hs
parentdae3cc3eb74cfe7e59b18242897584664078233f (diff)
[haddock @ 2005-01-16 14:37:10 by panne]
Refactored Text.PrettyPrint legacy hell into a separate module.
Diffstat (limited to 'src/PrettyPrint.hs')
-rw-r--r--src/PrettyPrint.hs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/PrettyPrint.hs b/src/PrettyPrint.hs
new file mode 100644
index 00000000..35d91dc1
--- /dev/null
+++ b/src/PrettyPrint.hs
@@ -0,0 +1,7 @@
+module PrettyPrint ( module Pretty ) where
+
+#if __GLASGOW_HASKELL__ < 503
+import Pretty
+#else
+import Text.PrettyPrint as Pretty
+#endif