Repository : ssh://darcs.haskell.org//srv/darcs/nofib On branch : master
http://hackage.haskell.org/trac/ghc/changeset/d2e04003e0b3faf6989ebc8e438f8e8971663bae >--------------------------------------------------------------- commit d2e04003e0b3faf6989ebc8e438f8e8971663bae Author: David Terei <[email protected]> Date: Wed Oct 26 02:14:44 2011 -0700 More Eq, Show, Num fixes >--------------------------------------------------------------- real/lift/Print.lhs | 9 +-------- 1 files changed, 1 insertions(+), 8 deletions(-) diff --git a/real/lift/Print.lhs b/real/lift/Print.lhs index 0f54615..61fa005 100644 --- a/real/lift/Print.lhs +++ b/real/lift/Print.lhs @@ -119,7 +119,7 @@ above. Finally @i_num@ converts an integer to an @Iseq@. -> i_num :: Num a => a -> Iseq +> i_num :: (Show a, Num a) => a -> Iseq > i_num = i_str . show > i_newline = i_str "\n" @@ -179,10 +179,3 @@ component @Oseq@s: > pspaces 0 cs = cs > pspaces n cs = ' ' : pspaces (n-1) cs - - - - - - - _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
