summaryrefslogtreecommitdiff
path: root/src/GF/Grammar/CF.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/GF/Grammar/CF.hs')
-rw-r--r--src/GF/Grammar/CF.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/GF/Grammar/CF.hs b/src/GF/Grammar/CF.hs
index 5d88916cd..2a94bbfdb 100644
--- a/src/GF/Grammar/CF.hs
+++ b/src/GF/Grammar/CF.hs
@@ -112,8 +112,8 @@ cf2rule (fun, (cat, items)) = (def,ldef) where
f = identS fun
def = (f, AbsFun (Just (mkProd (args', Cn (identS cat), []))) Nothing Nothing)
args0 = zip (map (identS . ("x" ++) . show) [0..]) items
- args = [(v, Cn (identS c)) | (v, Left c) <- args0]
- args' = [(identS "_", Cn (identS c)) | (_, Left c) <- args0]
+ args = [((Explicit,v), Cn (identS c)) | (v, Left c) <- args0]
+ args' = [(Explicit,identS "_", Cn (identS c)) | (_, Left c) <- args0]
ldef = (f, CncFun
Nothing
(Just (mkAbs (map fst args)