From 52fee8ab4d58e6737232eef3dcf7b16ba44ddec9 Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Fri, 26 Apr 2019 16:44:23 +0200 Subject: [PATCH] add coordinator parameter for missing conjunctions --- src/latin/ResLat.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/latin/ResLat.gf b/src/latin/ResLat.gf index 3a7e487eb..2444d6118 100644 --- a/src/latin/ResLat.gf +++ b/src/latin/ResLat.gf @@ -1159,7 +1159,7 @@ oper Preposition : Type = {s : Str ; c : Case ; isPost : Bool } ; -- conjunctions -param Coordinator = And | Or | If | Neither | Because | Comma | Colon | Empty ; +param Coordinator = And | Or | If | Neither | Because | Comma | Colon | Empty | Missing ; -- Missing means not implemented yet oper Conjunction : Type = { s1 : Str ; s2 : Str ; n : Number ; c : Coordinator }; mkConjunction : Str -> Str -> Number -> Coordinator -> Conjunction = \s1,s2,num,coord -> { s1 = s1; s2 = s2 ; n = num ; c = coord } ;