From 9fbed17125c472b8a5428d765eccc076c3442b73 Mon Sep 17 00:00:00 2001 From: krasimir Date: Thu, 14 Feb 2008 12:48:41 +0000 Subject: [PATCH] fix the singleton selector generation --- src/GF/Conversion/SimpleToFCFG.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)