1
0
forked from GitHub/gf-rgl

(Pes) Fix bug in mkPrep

This commit is contained in:
Inari Listenmaa
2019-04-17 14:37:06 +02:00
parent d25bbe7175
commit 4277ac33ad

View File

@@ -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}
} ;