diff options
author | Hécate Moonlight <Kleidukos@users.noreply.github.com> | 2021-02-21 00:22:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-21 00:22:01 +0100 |
commit | 43dd878df19f2523311365fb07742a434291b590 (patch) | |
tree | 8fa8bbe89c339d3e5c847ace44f2ccc085833480 /haddock-api/src/Haddock/Interface.hs | |
parent | c82317eabed433e0734916f338e19ae71d362fa1 (diff) | |
parent | ac5ec36f9eb9b697be6f4ceb63041a0abdcfd6d0 (diff) |
Merge pull request #1311 from fendor/wip/add-targetUnitId-to-target
Add UnitId to Target record
Diffstat (limited to 'haddock-api/src/Haddock/Interface.hs')
-rw-r--r-- | haddock-api/src/Haddock/Interface.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haddock-api/src/Haddock/Interface.hs b/haddock-api/src/Haddock/Interface.hs index 16643d0e..7cc76953 100644 --- a/haddock-api/src/Haddock/Interface.hs +++ b/haddock-api/src/Haddock/Interface.hs @@ -157,7 +157,7 @@ createIfaces verbosity modules flags instIfaceMap = do -- alive to be able to find all the instances. modifySession installHaddockPlugin - targets <- mapM (\filePath -> guessTarget filePath Nothing) modules + targets <- mapM (\filePath -> guessTarget filePath Nothing Nothing) modules setTargets targets loadOk <- withTimingM "load" (const ()) $ |