From 4277ac33addb9d3de6295a352800c73a654f1e0e Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 17 Apr 2019 14:37:06 +0200 Subject: [PATCH] (Pes) Fix bug in mkPrep --- src/persian/ParadigmsPes.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/persian/ParadigmsPes.gf b/src/persian/ParadigmsPes.gf index e2d927a3b..b29dc62df 100644 --- a/src/persian/ParadigmsPes.gf +++ b/src/persian/ParadigmsPes.gf @@ -185,7 +185,7 @@ oper mkPrep = overload { mkPrep : Str -> Prep -- Takes a string, returns a preposition. - = \str -> lin Prep {s = str ; ra = [] ; mod = Bare} ; + = \str -> lin Prep (prepOrRa str) ; mkPrep : Str -> Mod -> Prep -- Takes a string and Mod (so far only option is ezafe), returns a preposition. = \str,m -> lin Prep {s = str ; ra = [] ; mod=m} } ;