summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Rosenthal <jrosenthal@jhu.edu>2016-08-31 14:04:42 -0400
committerJesse Rosenthal <jrosenthal@jhu.edu>2016-09-02 09:18:08 -0400
commit1cdebe1170cbf8ea57496cef13fd961c7f8cec54 (patch)
tree139978158821e821487b0ec160517efd3657badf
parent45c7108b4f8dbaf616bb9b9442f4d16892d4440f (diff)
Remove an inline monad compatibility macro.
-rw-r--r--src/Text/Pandoc/Pretty.hs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/Text/Pandoc/Pretty.hs b/src/Text/Pandoc/Pretty.hs
index a0078037d..0bac628af 100644
--- a/src/Text/Pandoc/Pretty.hs
+++ b/src/Text/Pandoc/Pretty.hs
@@ -126,18 +126,6 @@ isEmpty = null . toList . unDoc
empty :: Doc
empty = mempty
-#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
cat = mconcat