diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2015-12-21 15:17:42 +0100 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2015-12-21 20:50:26 +0100 |
commit | 55250a63cc3f285fb479f1ef396e88dc0c58b218 (patch) | |
tree | 3eef52269ae4a6d812c1018de6ab831c5cd22ff7 /ghc/ghc-bin.cabal.in | |
parent | eeecb8647585ad9eea0554b2f97a3645d2c59f88 (diff) | |
download | haskell-55250a63cc3f285fb479f1ef396e88dc0c58b218.tar.gz |
Rename GHCi's UI modules into GHCi.UI(.*)
Further work refactoring and enhancing GHCi will make it desirable to
split up GHCi's code-base into multiple modules with specific functions,
and rather than have several top-level 'Ghci*' modules, it's nicer to
have a common namespace. This commit is provides the basis for that.
Note that the remaining GHCi.* namespace belongs to the new `ghci`
package.
Differential Revision: https://phabricator.haskell.org/D1593
Diffstat (limited to 'ghc/ghc-bin.cabal.in')
-rw-r--r-- | ghc/ghc-bin.cabal.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ghc/ghc-bin.cabal.in b/ghc/ghc-bin.cabal.in index dc303e5296..adf81b3890 100644 --- a/ghc/ghc-bin.cabal.in +++ b/ghc/ghc-bin.cabal.in @@ -56,10 +56,10 @@ Executable ghc CPP-Options: -DGHCI GHC-Options: -fno-warn-name-shadowing Other-Modules: - GhciInfo - GhciMonad - GhciTags - InteractiveUI + GHCi.UI + GHCi.UI.Info + GHCi.UI.Monad + GHCi.UI.Tags Other-Extensions: BangPatterns FlexibleInstances |