diff options
author | Emily Martins <emily.flakeheart@gmail.com> | 2021-06-28 18:47:56 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-07-01 03:31:13 -0400 |
commit | d455c39e93881dc3810ecc16a2f1bfd6c4e2fcdd (patch) | |
tree | e522af449195e507ecb9071470d42c47fce42205 /ghc | |
parent | 6d712150f8f9400397368b45a152a694ba9d5af4 (diff) | |
download | haskell-d455c39e93881dc3810ecc16a2f1bfd6c4e2fcdd.tar.gz |
Unify primary and secondary GHCi prompt
Fixes #20042
Signed-off-by: Emily Martins <emily.flakeheart@gmail.com>
Signed-off-by: Hécate Moonlight <hecate@glitchbra.in>
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/GHCi/UI.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/GHCi/UI.hs b/ghc/GHCi/UI.hs index 1f5b576b6b..f861c9b82a 100644 --- a/ghc/GHCi/UI.hs +++ b/ghc/GHCi/UI.hs @@ -447,7 +447,7 @@ default_stop = "" default_prompt, default_prompt_cont :: PromptFunction default_prompt = generatePromptFunctionFromString "ghci> " -default_prompt_cont = generatePromptFunctionFromString "| " +default_prompt_cont = generatePromptFunctionFromString "ghci| " default_args :: [String] default_args = [] |