From fa15af5162d202a8c29e9327e1ac298f2ad900e0 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sat, 4 Aug 2007 15:45:05 +0000 Subject: [PATCH] Add -fparr deprecated flag, and change -XParr to -XPArr -fparr did exist before, it just wasn't documented. --- compiler/main/DynFlags.hs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index 3de4012..32faa8d 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -1159,6 +1159,8 @@ fFlags = [ ( "implicit-params", Opt_ImplicitParams ), -- Deprecated in favour of -XScopedTypeVariables: ( "scoped-type-variables", Opt_ScopedTypeVariables ), + -- Deprecated in favour of -XPArr: + ( "parr", Opt_PArr ), -- Deprecated in favour of -XOverlappingInstances: ( "AllowOverlappingInstances", Opt_AllowOverlappingInstances ), -- Deprecated in favour of -XUndecidableInstances: @@ -1190,7 +1192,7 @@ xFlags = [ ( "TypeOperators", Opt_TypeOperators ), ( "RecursiveDo", Opt_RecursiveDo ), ( "Arrows", Opt_Arrows ), - ( "Parr", Opt_PArr ), + ( "PArr", Opt_PArr ), ( "TemplateHaskell", Opt_TH ), ( "Generics", Opt_Generics ), -- On by default: -- 1.7.10.4