From 0260265de0cf1e05c88e6475531b589d5302ebaf Mon Sep 17 00:00:00 2001 From: aarne Date: Fri, 21 Sep 2007 12:00:31 +0000 Subject: fixed reading argvars from gfc in gf-to-gfcc --- src/GF/Infra/CompactPrint.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/GF/Infra/CompactPrint.hs') diff --git a/src/GF/Infra/CompactPrint.hs b/src/GF/Infra/CompactPrint.hs index eb8be2292..56aaf4d64 100644 --- a/src/GF/Infra/CompactPrint.hs +++ b/src/GF/Infra/CompactPrint.hs @@ -1,11 +1,11 @@ module GF.Infra.CompactPrint where import Data.Char -compactPrint = concat . map spaceIf . words +compactPrint = tail . concat . map spaceIf . words spaceIf w = case w of _ | keyword w -> "\n" ++ w c:cs | isAlpha c || isDigit c -> " " ++ w _ -> w -keyword w = elem w ["cat","fun","lin","lincat","oper","param"] +keyword w = elem w ["cat","fun","lin","lincat","lindef","oper","param"] -- cgit v1.2.3