summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Pretty.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2012-02-05 19:57:59 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2012-02-05 19:57:59 -0800
commitbec945518cc1c15a3c5b7d19fbbf58713a1eafef (patch)
tree59c207a4b57c888c2507f65a09585a369ff7ca8b /src/Text/Pandoc/Pretty.hs
parent857524353efc8fc367f3a358b4ab9a93594c7985 (diff)
Fixed Pretty so it uses Data.Monoid's <> w/ GHC 7.4.
Note: changed fixity to infixr 6.
Diffstat (limited to 'src/Text/Pandoc/Pretty.hs')
-rw-r--r--src/Text/Pandoc/Pretty.hs15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Pretty.hs b/src/Text/Pandoc/Pretty.hs
index 340afeeed..8c752c1be 100644
--- a/src/Text/Pandoc/Pretty.hs
+++ b/src/Text/Pandoc/Pretty.hs
@@ -128,9 +128,17 @@ isEmpty = null . toList . unDoc
empty :: Doc
empty = mempty
--- | @a <> b@ is the result of concatenating @a@ with @b@.
-(<>) :: Doc -> Doc -> Doc
+#if MIN_VERSION_base(4,5,0)
+-- (<>) is defined in Data.Monoid
+#else
+infixr 6 <>
+
+-- | An infix synonym for 'mappend'.
+-- @a <> b@ is the result of concatenating @a@ with @b@.
+(<>) :: Monoid m => m -> m -> m
(<>) = mappend
+{-# INLINE (<>) #-}
+#endif
-- | Concatenate a list of 'Doc's.
cat :: [Doc] -> Doc
@@ -142,6 +150,7 @@ hcat = mconcat
-- | Concatenate a list of 'Doc's, putting breakable spaces
-- between them.
+infixr 6 <+>
(<+>) :: Doc -> Doc -> Doc
(<+>) x y = if isEmpty x
then y
@@ -154,6 +163,7 @@ hcat = mconcat
hsep :: [Doc] -> Doc
hsep = foldr (<+>) empty
+infixr 5 $$
-- | @a $$ b@ puts @a@ above @b@.
($$) :: Doc -> Doc -> Doc
($$) x y = if isEmpty x
@@ -162,6 +172,7 @@ hsep = foldr (<+>) empty
then x
else x <> cr <> y
+infixr 5 $+$
-- | @a $$ b@ puts @a@ above @b@, with a blank line between.
($+$) :: Doc -> Doc -> Doc
($+$) x y = if isEmpty x