diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2014-09-26 19:18:28 +0200 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2014-09-26 19:18:28 +0200 |
commit | a65d2131647e010608d2a1956116a0012946838f (patch) | |
tree | 82db3bfedd9d6c47e3ace2e482b4e62c340d727f /src/Haddock/Backends/LaTeX.hs | |
parent | 12dc730e62236e15f1194ddc8260affc24928bd1 (diff) |
Revert "Fix import of 'empty' due to AMP."
This reverts commit 0cc5bc85e9fca92ab712b68a2ba2c0dd9d3d79f4 since
it turns out we don't need to re-export `empty` from Control.Monad after
all.
Diffstat (limited to 'src/Haddock/Backends/LaTeX.hs')
-rw-r--r-- | src/Haddock/Backends/LaTeX.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Haddock/Backends/LaTeX.hs b/src/Haddock/Backends/LaTeX.hs index 014f3350..06a24b4f 100644 --- a/src/Haddock/Backends/LaTeX.hs +++ b/src/Haddock/Backends/LaTeX.hs @@ -31,7 +31,7 @@ import qualified Data.Map as Map import System.Directory import System.FilePath import Data.Char -import Control.Monad hiding (empty) +import Control.Monad import Data.Maybe import Data.List |