summaryrefslogtreecommitdiff
path: root/ghc
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-01-07 12:05:44 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-01-11 19:43:57 -0500
commit19b13698f5afe6ab497eb2e2169cb9782a933f93 (patch)
tree70dea5c6ded5f6a72aecae731d8ece0a8377e2d6 /ghc
parent833216a31c866d86ff95cfbf95591fb56463371c (diff)
downloadhaskell-19b13698f5afe6ab497eb2e2169cb9782a933f93.tar.gz
Enable :seti in a multi component repl
Part of #20889
Diffstat (limited to 'ghc')
-rw-r--r--ghc/GHCi/UI.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc/GHCi/UI.hs b/ghc/GHCi/UI.hs
index a51d30232c..cf58baa0a6 100644
--- a/ghc/GHCi/UI.hs
+++ b/ghc/GHCi/UI.hs
@@ -233,8 +233,8 @@ ghciCommands = map mkCmd [
("run", keepGoing runRun, completeFilename),
("script", keepGoing' scriptCmd, completeFilename),
("set", keepGoing setCmd, completeSetOptions),
- ("seti", keepGoing setiCmd, completeSeti),
- ("show", keepGoingMulti' showCmd, completeShowOptions),
+ ("seti", keepGoingMulti setiCmd, completeSeti),
+ ("show", keepGoingMulti' showCmd, completeShowOptions),
("showi", keepGoing showiCmd, completeShowiOptions),
("sprint", keepGoing sprintCmd, completeExpression),
("step", keepGoing stepCmd, completeIdentifier),