[commit: packages/deepseq] master: `M-x delete-trailing-whitespace` & `M-x untabify` (234bab1)
git at git.haskell.org
git
Fri Oct 11 21:04:50 UTC 2013
Repository : ssh://git at git.haskell.org/deepseq
On branch : master
Link : http://git.haskell.org/packages/deepseq.git/commitdiff/234bab1c98e040da0cbee46bbbecf52c86dce172
>---------------------------------------------------------------
commit 234bab1c98e040da0cbee46bbbecf52c86dce172
Author: Herbert Valerio Riedel <hvr at gnu.org>
Date: Fri Oct 11 12:18:07 2013 +0200
`M-x delete-trailing-whitespace` & `M-x untabify`
Signed-off-by: Herbert Valerio Riedel <hvr at gnu.org>
>---------------------------------------------------------------
234bab1c98e040da0cbee46bbbecf52c86dce172
Control/DeepSeq.hs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Control/DeepSeq.hs b/Control/DeepSeq.hs
index b96ca94..2b3fa29 100644
--- a/Control/DeepSeq.hs
+++ b/Control/DeepSeq.hs
@@ -185,9 +185,9 @@ instance (NFData a, NFData b, NFData c) => NFData (a,b,c) where
instance (NFData a, NFData b, NFData c, NFData d) => NFData (a,b,c,d) where
rnf (x1,x2,x3,x4) = rnf x1 `seq`
- rnf x2 `seq`
- rnf x3 `seq`
- rnf x4
+ rnf x2 `seq`
+ rnf x3 `seq`
+ rnf x4
instance (NFData a1, NFData a2, NFData a3, NFData a4, NFData a5) =>
NFData (a1, a2, a3, a4, a5) where
More information about the ghc-commits
mailing list