summaryrefslogtreecommitdiff
path: root/compiler/main
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2013-08-22 16:36:11 -0500
committerAustin Seipp <aseipp@pobox.com>2013-08-22 16:36:11 -0500
commit726d08ab51de4b8d0e612b790b899427a5884c14 (patch)
tree8d490d08529e5f5b61c37e9b003661d43830237d /compiler/main
parent5258bffe237f653ddc2e1b3d795a1d8b696c1c47 (diff)
downloadhaskell-726d08ab51de4b8d0e612b790b899427a5884c14.tar.gz
Remove trailing whitespace from HscTypes
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'compiler/main')
-rw-r--r--compiler/main/HscTypes.lhs13
1 files changed, 6 insertions, 7 deletions
diff --git a/compiler/main/HscTypes.lhs b/compiler/main/HscTypes.lhs
index 07e78f3883..a65437e31a 100644
--- a/compiler/main/HscTypes.lhs
+++ b/compiler/main/HscTypes.lhs
@@ -931,7 +931,7 @@ data ModGuts
mg_tcs :: ![TyCon], -- ^ TyCons declared in this module
-- (includes TyCons for classes)
mg_insts :: ![ClsInst], -- ^ Class instances declared in this module
- mg_fam_insts :: ![FamInst],
+ mg_fam_insts :: ![FamInst],
-- ^ Family instances declared in this module
mg_rules :: ![CoreRule], -- ^ Before the core pipeline starts, contains
-- See Note [Overall plumbing for rules] in Rules.lhs
@@ -1071,7 +1071,7 @@ data InteractiveContext
ic_fix_env :: FixityEnv,
-- ^ Fixities declared in let statements
-
+
ic_int_print :: Name,
-- ^ The function that is used for printing results
-- of expressions in ghci and -e mode.
@@ -1534,7 +1534,7 @@ lookupType dflags hpt pte name
return x
| otherwise
= lookupNameEnv pte name
- where
+ where
mod = ASSERT2( isExternalName name, ppr name ) nameModule name
this_pkg = thisPackage dflags
@@ -1814,13 +1814,13 @@ data Usage
-- depend on their export lists
instance Binary Usage where
- put_ bh usg@UsagePackageModule{} = do
+ put_ bh usg@UsagePackageModule{} = do
putByte bh 0
put_ bh (usg_mod usg)
put_ bh (usg_mod_hash usg)
put_ bh (usg_safe usg)
- put_ bh usg@UsageHomeModule{} = do
+ put_ bh usg@UsageHomeModule{} = do
putByte bh 1
put_ bh (usg_mod_name usg)
put_ bh (usg_mod_hash usg)
@@ -1828,7 +1828,7 @@ instance Binary Usage where
put_ bh (usg_entities usg)
put_ bh (usg_safe usg)
- put_ bh usg@UsageFile{} = do
+ put_ bh usg@UsageFile{} = do
putByte bh 2
put_ bh (usg_file_path usg)
put_ bh (usg_file_hash usg)
@@ -2457,4 +2457,3 @@ emptyModBreaks = ModBreaks
, modBreaks_decls = array (0,-1) []
}
\end{code}
-