diff options
author | panne <unknown> | 2005-01-16 14:37:10 +0000 |
---|---|---|
committer | panne <unknown> | 2005-01-16 14:37:10 +0000 |
commit | 951d840870e67b452387b35c72d235511ed9163c (patch) | |
tree | c62b706cbe5de938a995073cc15e8e463b581fce /src/PrettyPrint.hs | |
parent | dae3cc3eb74cfe7e59b18242897584664078233f (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.hs | 7 |
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 |