diff options
author | Ryan Scott <ryan.gl.scott@gmail.com> | 2019-03-12 18:15:38 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-03-15 10:17:54 -0400 |
commit | 610ec224a49e092c802a336570fd9613ea15ef3c (patch) | |
tree | cc79ac561669b51099eb37f222e8179d48a54d59 /ghc/GHCi/UI.hs | |
parent | afc80730fd235f5c5b2d0b9fc5a10c16ef9865f6 (diff) | |
download | haskell-610ec224a49e092c802a336570fd9613ea15ef3c.tar.gz |
Update Trac ticket URLs to point to GitLab
This moves all URL references to Trac tickets to their corresponding
GitLab counterparts.
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 -} |