summaryrefslogtreecommitdiff
path: root/docs/comm
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2008-06-16 14:29:17 +0000
committerIan Lynagh <igloo@earth.li>2008-06-16 14:29:17 +0000
commit0f5e104c36b1dc3d8deeec5fef3d65e7b3a1b5ad (patch)
treecb2319df6f3669fd22e95029a0de98cd308feec4 /docs/comm
parent1363f4121ceaa38ac50eac42381b976f89d5ea96 (diff)
downloadhaskell-0f5e104c36b1dc3d8deeec5fef3d65e7b3a1b5ad.tar.gz
More commandline flag improvements
* Allow -ffoo flags to be deprecated * Mark some -ffoo flags as deprecated * Avoid using deprecated flags in error messages, in the build system, etc * Add a flag to en/disable the deprecated flag warning
Diffstat (limited to 'docs/comm')
-rw-r--r--docs/comm/exts/ndp.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/comm/exts/ndp.html b/docs/comm/exts/ndp.html
index 0c94c3960b..2c79d728d5 100644
--- a/docs/comm/exts/ndp.html
+++ b/docs/comm/exts/ndp.html
@@ -32,8 +32,8 @@
<h2>More Sugar: Special Syntax for Array Comprehensions</h2>
<p>
- The option <code>-fparr</code>, which is a dynamic hsc option that can
- be reversed with <code>-fno-parr</code>, enables special syntax for
+ The option <code>-XParr</code>, which is a dynamic hsc option that can
+ be reversed with <code>-XNoParr</code>, enables special syntax for
parallel arrays, which is not essential to using parallel arrays, but
makes for significantly more concise programs. The switch works by
making the lexical analyser (located in <a
@@ -326,7 +326,7 @@ mapFilterP :: (a -> Maybe b) -> [:a:] -> [:b:]</pre>
flattening (just like profiling does), there is a <em>compiler way</em>
<code>"ndp"</code>, which can be selected using the way option code
<code>-ndp</code>. This option will automagically select
- <code>-fparr</code> and <code>-fflatten</code>.
+ <code>-XParr</code> and <code>-fflatten</code>.
<h4><code>FlattenMonad</code></h4>
<p>