diff options
author | Hécate <hecate+gitlab@glitchbra.in> | 2020-09-17 09:26:46 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-09-23 06:52:08 -0400 |
commit | 086ef01813069fad84cafe81cab37527d41c8568 (patch) | |
tree | 40cba0f28e7ea14225b1c01010b0f6d63a18427e /ghc/GHCi | |
parent | e9501547a8be6af97bcbf38a7ed66dadf02ea27b (diff) | |
download | haskell-086ef01813069fad84cafe81cab37527d41c8568.tar.gz |
Remove the list of loaded modules from the ghci prompt
Diffstat (limited to 'ghc/GHCi')
-rw-r--r-- | ghc/GHCi/UI.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc/GHCi/UI.hs b/ghc/GHCi/UI.hs index da3b4d5e2f..3ccd2e2678 100644 --- a/ghc/GHCi/UI.hs +++ b/ghc/GHCi/UI.hs @@ -430,8 +430,8 @@ default_progname = "<interactive>" default_stop = "" default_prompt, default_prompt_cont :: PromptFunction -default_prompt = generatePromptFunctionFromString "%s> " -default_prompt_cont = generatePromptFunctionFromString "%s| " +default_prompt = generatePromptFunctionFromString "ghci> " +default_prompt_cont = generatePromptFunctionFromString "| " default_args :: [String] default_args = [] |