Show
Ignore:
Timestamp:
01.08.2008 13:17:06 (16 months ago)
Author:
maeder
Message:

removed more than two consecutive blank lines

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/CspCASL/Print_CspCASL.hs

    r10252 r10428  
    4242 
    4343 
    44  
    4544printChanDecs :: [CHANNEL_DECL] -> Doc 
    4645printChanDecs cds = (vcat . punctuate semi . map pretty) cds 
     
    5251printChanDecl (ChannelDecl ns s) = 
    5352    (ppWithCommas ns) <+> colon <+> (pretty s) 
    54  
    5553 
    5654 
     
    7068 
    7169 
    72  
    7370instance Pretty PARM_PROCNAME where 
    7471    pretty = printParmProcname 
     
    8582printProcAlphabet :: PROC_ALPHABET -> Doc 
    8683printProcAlphabet (ProcAlphabet commTypes _) = ppWithCommas commTypes 
    87  
    8884 
    8985