From 5b4a228215062d6c08b7875d69b6dadaa63611f7 Mon Sep 17 00:00:00 2001 From: krasimir Date: Thu, 14 Feb 2008 12:48:41 +0000 Subject: fix the singleton selector generation --- src/GF/Conversion/SimpleToFCFG.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/GF/Conversion/SimpleToFCFG.hs') diff --git a/src/GF/Conversion/SimpleToFCFG.hs b/src/GF/Conversion/SimpleToFCFG.hs index 664f36f80..a964dfcd8 100644 --- a/src/GF/Conversion/SimpleToFCFG.hs +++ b/src/GF/Conversion/SimpleToFCFG.hs @@ -428,8 +428,8 @@ mkSingletonSelectors cnc_defs term = sels0 loop path st (R record) = List.foldl' (\st (index,term) -> loop (index:path) st term) st (zip [0..] record) loop path st (RP _ t) = loop path st t - loop path (sels,tcss) (C i) = ( sels,map ((,) path) [0..i-1] : tcss) - loop path (sels,tcss) (S _) = (mkSelector [path] tcss0 : sels, tcss) + loop path (sels,tcss) (C i) = ( sels,map ((,) path) [0..i] : tcss) + loop path (sels,tcss) (S _) = (mkSelector [path] tcss0 : sels, tcss) loop path (sels,tcss) (F id) = case Map.lookup id cnc_defs of Just term -> loop path (sels,tcss) term Nothing -> error ("unknown identifier: "++prt id) -- cgit v1.2.3