[commit: packages/process] master: Drop redundant `{-# ForeignFunctionInterface #-}` (4c5d7dd)

git at git.haskell.org git at git.haskell.org
Wed Nov 20 21:09:14 UTC 2013


Repository : ssh://git@git.haskell.org/process

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/4c5d7dd34b3e50a96aeaf87477ef12ffaf4cef93/process

>---------------------------------------------------------------

commit 4c5d7dd34b3e50a96aeaf87477ef12ffaf4cef93
Author: Herbert Valerio Riedel <hvr at gnu.org>
Date:   Wed Nov 20 21:19:19 2013 +0100

    Drop redundant `{-# ForeignFunctionInterface #-}`
    
    ...which is implied by Haskell2010; moreover add missing
    `BangPatterns` to `other-extensions`.
    
    Signed-off-by: Herbert Valerio Riedel <hvr at gnu.org>


>---------------------------------------------------------------

4c5d7dd34b3e50a96aeaf87477ef12ffaf4cef93
 System/Process.hs           |    2 +-
 System/Process/Internals.hs |    2 +-
 process.cabal               |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/System/Process.hs b/System/Process.hs
index 5581786..cc7acb4 100644
--- a/System/Process.hs
+++ b/System/Process.hs
@@ -1,4 +1,4 @@
-{-# LANGUAGE CPP, ForeignFunctionInterface #-}
+{-# LANGUAGE CPP #-}
 #ifdef __GLASGOW_HASKELL__
 {-# LANGUAGE Trustworthy #-}
 {-# LANGUAGE InterruptibleFFI #-}
diff --git a/System/Process/Internals.hs b/System/Process/Internals.hs
index 54a7d06..797535c 100644
--- a/System/Process/Internals.hs
+++ b/System/Process/Internals.hs
@@ -1,4 +1,4 @@
-{-# LANGUAGE CPP, ForeignFunctionInterface, RecordWildCards, BangPatterns #-}
+{-# LANGUAGE CPP, RecordWildCards, BangPatterns #-}
 {-# OPTIONS_HADDOCK hide #-}
 #ifdef __GLASGOW_HASKELL__
 {-# LANGUAGE Trustworthy #-}
diff --git a/process.cabal b/process.cabal
index 11279cf..e8d07b5 100644
--- a/process.cabal
+++ b/process.cabal
@@ -38,8 +38,8 @@ source-repository this
 library
     default-language: Haskell2010
     other-extensions:
+        BangPatterns
         CPP
-        ForeignFunctionInterface
         InterruptibleFFI
         RecordWildCards
         Trustworthy



More information about the ghc-commits mailing list