Repository : ssh://darcs.haskell.org//srv/darcs/packages/terminfo On branch : master
http://hackage.haskell.org/trac/ghc/changeset/579d2c324e69856ff8d1ea8b5036e30c920e1973 >--------------------------------------------------------------- commit 579d2c324e69856ff8d1ea8b5036e30c920e1973 Author: Judah Jacobson <[email protected]> Date: Thu Jul 12 16:16:59 2012 +0000 Require ghc-7.4.1 for -XSafe and -XTrustworthy. As mentioned in a previous commit, Safe Haskell didn't work out-of-the-box in ghc-7.2.1. >--------------------------------------------------------------- System/Console/Terminfo/Base.hs | 2 +- System/Console/Terminfo/Color.hs | 2 +- System/Console/Terminfo/Cursor.hs | 2 +- System/Console/Terminfo/Edit.hs | 2 +- System/Console/Terminfo/Effects.hs | 2 +- System/Console/Terminfo/Keys.hs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/System/Console/Terminfo/Base.hs b/System/Console/Terminfo/Base.hs index 1ee5ceb..7c32d55 100644 --- a/System/Console/Terminfo/Base.hs +++ b/System/Console/Terminfo/Base.hs @@ -1,4 +1,4 @@ -#if __GLASGOW_HASKELL__ >= 701 +#if __GLASGOW_HASKELL__ >= 703 {-# LANGUAGE Trustworthy #-} #endif -- | diff --git a/System/Console/Terminfo/Color.hs b/System/Console/Terminfo/Color.hs index 6c00f95..f031dbb 100644 --- a/System/Console/Terminfo/Color.hs +++ b/System/Console/Terminfo/Color.hs @@ -1,4 +1,4 @@ -#if __GLASGOW_HASKELL__ >= 701 +#if __GLASGOW_HASKELL__ >= 703 {-# LANGUAGE Safe #-} #endif -- | diff --git a/System/Console/Terminfo/Cursor.hs b/System/Console/Terminfo/Cursor.hs index d7980ea..8808cce 100644 --- a/System/Console/Terminfo/Cursor.hs +++ b/System/Console/Terminfo/Cursor.hs @@ -1,4 +1,4 @@ -#if __GLASGOW_HASKELL__ >= 701 +#if __GLASGOW_HASKELL__ >= 703 {-# LANGUAGE Safe #-} #endif -- | diff --git a/System/Console/Terminfo/Edit.hs b/System/Console/Terminfo/Edit.hs index a8cdacf..0a704da 100644 --- a/System/Console/Terminfo/Edit.hs +++ b/System/Console/Terminfo/Edit.hs @@ -1,4 +1,4 @@ -#if __GLASGOW_HASKELL__ >= 701 +#if __GLASGOW_HASKELL__ >= 703 {-# LANGUAGE Safe #-} #endif -- | diff --git a/System/Console/Terminfo/Effects.hs b/System/Console/Terminfo/Effects.hs index a772813..4b8e1d5 100644 --- a/System/Console/Terminfo/Effects.hs +++ b/System/Console/Terminfo/Effects.hs @@ -1,4 +1,4 @@ -#if __GLASGOW_HASKELL__ >= 701 +#if __GLASGOW_HASKELL__ >= 703 {-# LANGUAGE Safe #-} #endif -- | diff --git a/System/Console/Terminfo/Keys.hs b/System/Console/Terminfo/Keys.hs index 263e11d..6aaa289 100644 --- a/System/Console/Terminfo/Keys.hs +++ b/System/Console/Terminfo/Keys.hs @@ -1,4 +1,4 @@ -#if __GLASGOW_HASKELL__ >= 701 +#if __GLASGOW_HASKELL__ >= 703 {-# LANGUAGE Safe #-} #endif -- | _______________________________________________ Cvs-libraries mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-libraries
