diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2013-09-23 00:55:06 +0200 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2013-09-23 01:06:39 +0200 |
commit | 2ed1377a6d5f28006ff8ea2162129e5c57c64e30 (patch) | |
tree | dfbd002aca9f0a032bc5e1f2f60b3d7e2bed6204 /libraries/base/System | |
parent | 40c00afe77a442c4cdc1bb85fadbd57aea89abb8 (diff) | |
download | haskell-2ed1377a6d5f28006ff8ea2162129e5c57c64e30.tar.gz |
Remove obsolete pre-Haddock-2 `#hide` pragmas
The now obsolete (and redundant) `#hide` pragmas have been superseded by
`{-# OPTIONS_HADDOCK hide #-}` pragmas which are used by most of the
affected modules anyway.
This commit also adds proper `{-# OPTIONS_HADDOCK hide #-}` pragmas to
`GHC.Desugar` and `GHC.IO.Encoding.Iconv` which had only the ineffective
`#hide` annotation.
Signed-off-by: Herbert Valerio Riedel <hvr@gnu.org>
Diffstat (limited to 'libraries/base/System')
-rw-r--r-- | libraries/base/System/Posix/Internals.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libraries/base/System/Posix/Internals.hs b/libraries/base/System/Posix/Internals.hs index 833366e042..1869f7548d 100644 --- a/libraries/base/System/Posix/Internals.hs +++ b/libraries/base/System/Posix/Internals.hs @@ -21,7 +21,6 @@ -- ----------------------------------------------------------------------------- --- #hide module System.Posix.Internals where #include "HsBaseConfig.h" |