diff options
author | Ian Lynagh <igloo@earth.li> | 2008-07-20 12:09:18 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-07-20 12:09:18 +0000 |
commit | cae75f82226638691cfa1e85fc168f4b65ddce4d (patch) | |
tree | 34c6a489699fe3af72cdb8b9c817b223b61933c8 /docs/users_guide/using.xml | |
parent | 35c21b89f504b1db205c97d8a184d2e24a1f3cde (diff) | |
download | haskell-cae75f82226638691cfa1e85fc168f4b65ddce4d.tar.gz |
Add a WARNING pragma
Diffstat (limited to 'docs/users_guide/using.xml')
-rw-r--r-- | docs/users_guide/using.xml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/docs/users_guide/using.xml b/docs/users_guide/using.xml index 3c19be5de2..4b3024ae9b 100644 --- a/docs/users_guide/using.xml +++ b/docs/users_guide/using.xml @@ -841,7 +841,7 @@ ghc -c Foo.hs</screen> of warnings which are generally likely to indicate bugs in your program. These are: <option>-fwarn-overlapping-patterns</option>, - <option>-fwarn-deprecations</option>, + <option>-fwarn-warnings-deprecations</option>, <option>-fwarn-deprecated-flags</option>, <option>-fwarn-duplicate-exports</option>, <option>-fwarn-missing-fields</option>, @@ -919,15 +919,16 @@ ghc -c Foo.hs</screen> <variablelist> <varlistentry> - <term><option>-fwarn-deprecations</option>:</term> + <term><option>-fwarn-warnings-deprecations</option>:</term> <listitem> - <indexterm><primary><option>-fwarn-deprecations</option></primary> + <indexterm><primary><option>-fwarn-warnings-deprecations</option></primary> </indexterm> + <indexterm><primary>warnings</primary></indexterm> <indexterm><primary>deprecations</primary></indexterm> - <para>Causes a warning to be emitted when a deprecated - function or type is used. Entities can be marked as - deprecated using a pragma, see <xref - linkend="deprecated-pragma"/>.</para> + <para>Causes a warning to be emitted when a + module, function or type with a WARNING or DEPRECATED pragma + is used. See <xref linkend="warning-deprecated-pragma"/> for more + details on the pragmas.</para> <para>This option is on by default.</para> </listitem> |