Zap stray whitespace in lhs formatting
authorSamuel Bronson <naesten@gmail.com>
Fri, 10 Nov 2006 18:36:33 +0000 (18:36 +0000)
committerSamuel Bronson <naesten@gmail.com>
Fri, 10 Nov 2006 18:36:33 +0000 (18:36 +0000)
compiler/basicTypes/BasicTypes.lhs
compiler/iface/LoadIface.lhs
compiler/simplCore/Simplify.lhs
compiler/typecheck/TcBinds.lhs
compiler/typecheck/TcForeign.lhs
compiler/typecheck/TcGadt.lhs
compiler/typecheck/TcInstDcls.lhs
compiler/typecheck/TcUnify.lhs

index 278a284..35c57f3 100644 (file)
@@ -236,7 +236,7 @@ isBoxed Unboxed = False
 %*                                                                     *
 %************************************************************************
 
-\begin{code} 
+\begin{code}
 data RecFlag = Recursive 
             | NonRecursive
             deriving( Eq )
index 9c89f18..8625a1a 100644 (file)
@@ -518,7 +518,7 @@ ifaceStats eps
         hsep [ int (n_rules_out stats), text "rule decls imported, out of",  
                int (n_rules_in stats), text "read"]
        ]
-\end{code}    
+\end{code}
 
 
 %************************************************************************
index 5b68cc5..28193eb 100644 (file)
@@ -553,7 +553,7 @@ completeBind env top_lvl old_bndr new_bndr new_rhs
     loop_breaker = isNonRuleLoopBreaker occ_info
     old_info     = idInfo old_bndr
     occ_info     = occInfo old_info
-\end{code}    
+\end{code}
 
 
 
index 9e0b583..95f3d41 100644 (file)
@@ -827,7 +827,7 @@ checkDistinctTyVars sig_tvs
                         <+> quotes (ppr tidy_tv2)
            ; failWithTcM (env2, msg) }
        where
-\end{code}    
+\end{code}
 
 
 @getTyVarsToGen@ decides what type variables to generalise over.
index 705a3c3..c78b469 100644 (file)
@@ -309,7 +309,7 @@ checkCg check
        case check target of
         Nothing  -> returnM ()
         Just err -> addErrTc (text "Illegal foreign declaration:" <+> err)
-\end{code} 
+\end{code}
                           
 Calling conventions
 
index 987a4c6..3761c68 100644 (file)
@@ -184,7 +184,7 @@ gadtRefine (Reft in_scope env1)
     do_one reft co_var = unify reft (TyVarTy co_var) ty1 ty2
        where
           (ty1,ty2) = splitCoercionKind (tyVarKind co_var)
-\end{code} 
+\end{code}
 
 %************************************************************************
 %*                                                                     *
index 10bfed7..b0ca87a 100644 (file)
@@ -221,7 +221,7 @@ addFamInsts tycons thing_inside
     mkLocalFamInstTyThing (ATyCon tycon) = mkLocalFamInst tycon
     mkLocalFamInstTyThing tything       = pprPanic "TcInstDcls.addFamInsts"
                                                    (ppr tything)
-\end{code} 
+\end{code}
 
 \begin{code}
 tcLocalInstDecl1 :: LInstDecl Name 
index e24ea65..5fcaea6 100644 (file)
@@ -65,7 +65,7 @@ tcInfer tc_infer
        ; res <- tc_infer (mkTyVarTy box)
        ; res_ty <- readFilledBox box   -- Guaranteed filled-in by now
        ; return (res, res_ty) }
-\end{code}                
+\end{code}
 
 
 %************************************************************************