diff options
Diffstat (limited to 'ghc/GHCi/UI.hs')
-rw-r--r-- | ghc/GHCi/UI.hs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ghc/GHCi/UI.hs b/ghc/GHCi/UI.hs index 5e26685a69..e386fe6058 100644 --- a/ghc/GHCi/UI.hs +++ b/ghc/GHCi/UI.hs @@ -657,7 +657,7 @@ runGHCi paths maybe_exprs = do $ topHandler e -- this used to be topHandlerFastExit, see #2228 runInputTWithPrefs defaultPrefs defaultSettings $ do - -- make `ghc -e` exit nonzero on invalid input, see Trac #7962 + -- make `ghc -e` exit nonzero on invalid input, see #7962 _ <- runCommands' hdle (Just $ hdle (toException $ ExitFailure 1) >> return ()) (return Nothing) @@ -3068,16 +3068,16 @@ internally generated by GHC, eg: $tcFoo :: GHC.Types.TyCon = _ $trModule :: GHC.Types.Module = _ . -The filter was introduced as a fix for Trac #12525 [1]. Comment:1 [2] to this +The filter was introduced as a fix for #12525 [1]. Comment:1 [2] to this ticket contains an analysis of the situation and suggests the solution implemented above. -The same filter was also implemented to fix Trac #11051 [3]. See the +The same filter was also implemented to fix #11051 [3]. See the Note [What to show to users] in compiler/main/InteractiveEval.hs -[1] https://ghc.haskell.org/trac/ghc/ticket/12525 -[2] https://ghc.haskell.org/trac/ghc/ticket/12525#comment:1 -[3] https://ghc.haskell.org/trac/ghc/ticket/11051 +[1] https://gitlab.haskell.org/ghc/ghc/issues/12525 +[2] https://gitlab.haskell.org/ghc/ghc/issues/12525#note_123489 +[3] https://gitlab.haskell.org/ghc/ghc/issues/11051 -} |