diff options
author | Emily Martins <emi@haskell.fyi> | 2021-08-08 15:41:51 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-10-19 22:21:26 -0400 |
commit | f8ce38e62c19fb346f33b246efc205fb37999d14 (patch) | |
tree | 8f5b843988a680b64b45762b54d8db586f2ac4a9 /ghc | |
parent | 79c9c816ac1866881f90ea7e6d5c182b54780a97 (diff) | |
download | haskell-f8ce38e62c19fb346f33b246efc205fb37999d14.tar.gz |
Fix #19884: add warning to tags command, drop T10989
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/GHCi/UI/Tags.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ghc/GHCi/UI/Tags.hs b/ghc/GHCi/UI/Tags.hs index 94e7557410..410b2c5927 100644 --- a/ghc/GHCi/UI/Tags.hs +++ b/ghc/GHCi/UI/Tags.hs @@ -63,6 +63,8 @@ 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 "Use the method described in https://gitlab.haskell.org/ghc/ghc/-/wikis/commentary/GHCi/Tags" createTagsFile kind file -- ToDo: |