aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Process.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Pandoc/Process.hs')
-rw-r--r--src/Text/Pandoc/Process.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Process.hs b/src/Text/Pandoc/Process.hs
index b896feb7e..7f13921fd 100644
--- a/src/Text/Pandoc/Process.hs
+++ b/src/Text/Pandoc/Process.hs
@@ -1,3 +1,4 @@
+{-# LANGUAGE OverloadedStrings #-}
{- |
Module : Text.Pandoc.Process
Copyright : Copyright (C) 2013-2021 John MacFarlane
@@ -11,8 +12,7 @@ ByteString variant of 'readProcessWithExitCode'.
-}
module Text.Pandoc.Process (pipeProcess)
where
-import Control.Concurrent (MVar, forkIO, killThread, newEmptyMVar, putMVar,
- takeMVar)
+import Control.Concurrent (MVar, forkIO, killThread)
import Control.Exception (SomeException (..))
import qualified Control.Exception as E
import Control.Monad (unless)