diff options
author | Hécate Moonlight <hecate+gitlab@glitchbra.in> | 2022-11-06 11:19:55 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-11-09 09:28:30 -0500 |
commit | 90c5abd4581b404f715e72ad55303e18d0c31d68 (patch) | |
tree | 6e5132ca01587c0e39d476e1e8669e8467fe8b0e /ghc | |
parent | 92ccb8de9624ea930d66152b2f6a181941a497c9 (diff) | |
download | haskell-90c5abd4581b404f715e72ad55303e18d0c31d68.tar.gz |
GHCi tags generation phase 2
see #19884
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/GHCi/UI/Tags.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/GHCi/UI/Tags.hs b/ghc/GHCi/UI/Tags.hs index ebf2d5ebab..60de939082 100644 --- a/ghc/GHCi/UI/Tags.hs +++ b/ghc/GHCi/UI/Tags.hs @@ -61,7 +61,7 @@ data TagsKind = ETags | CTagsWithLineNumbers | CTagsWithRegExes ghciCreateTagsFile :: TagsKind -> FilePath -> GHCi () ghciCreateTagsFile kind file = do - liftIO $ putStrLn "Tags generation from GHCi will be deprecated in future releases" + liftIO $ putStrLn "Tags generation from GHCi will be deprecated in GHC 9.8" liftIO $ putStrLn "Use the method described in https://gitlab.haskell.org/ghc/ghc/-/wikis/commentary/GHCi/Tags" createTagsFile kind file |