diff options
author | Ryan Scott <ryan.gl.scott@gmail.com> | 2016-09-10 13:51:23 -0400 |
---|---|---|
committer | Ryan Scott <ryan.gl.scott@gmail.com> | 2016-09-10 13:51:23 -0400 |
commit | 7b4bb40555eb19b528a976ff1f1b43c8bded6373 (patch) | |
tree | 9256b48e9f039ef04ab3d50e6e27b54c99383b2e /compiler | |
parent | 1b5f9207a649a64a1bba20b0283253425f9208d7 (diff) | |
download | haskell-7b4bb40555eb19b528a976ff1f1b43c8bded6373.tar.gz |
Remove -flocal-ghci-history from default flags
Summary:
D2461 seemed to (inadvertently, I think) add the
`-flocal-ghci-history` flag to the list of `defaultFlags` that are enabled
automatically. As a result, every invocation of `ghci` caused a local GHCi
history to be saved to the current directory, which probably shouldn't be the
default.
Test Plan:
Run `ghci`, observe the lack of a `.ghci_history` file in your
working directory
Reviewers: austin, thomie, bgamari
Reviewed By: bgamari
Subscribers: ak3n
Differential Revision: https://phabricator.haskell.org/D2520
GHC Trac Issues: #9089
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/main/DynFlags.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index fa471d38a1..7546936e4f 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -3675,7 +3675,6 @@ defaultFlags settings Opt_FlatCache, Opt_GenManifest, Opt_GhciHistory, - Opt_LocalGhciHistory, Opt_GhciSandbox, Opt_HelpfulErrors, Opt_KeepHiFiles, |