1
0
forked from GitHub/gf-core

use the real nonExist in the Maltese grammar

This commit is contained in:
kr.angelov
2013-09-27 15:19:17 +00:00
parent efa4bc4d62
commit 9784b72add
3 changed files with 42 additions and 45 deletions

View File

@@ -867,8 +867,8 @@ resource ResMlt = ParamX ** open Prelude, Predef, Maybe in {
<VImpf (AgP3Pl), Neg> => "jkunux" ;
<VImp (Sg), Neg> => "kunx" ;
<VImp (Pl), Neg> => "kunux" ;
<VPresPart gn, _> => NONEXIST ;
<VPastPart gn, _> => NONEXIST
<VPresPart gn, _> => nonExist ;
<VPastPart gn, _> => nonExist
}
} ;
@@ -909,8 +909,8 @@ resource ResMlt = ParamX ** open Prelude, Predef, Maybe in {
VImpf (AgP3Pl) => mkVerbStems "huma" "m'humie" ;
VImp (Sg) => mkVerbStems "kun" ;
VImp (Pl) => mkVerbStems "kunu" ;
VPresPart gn => mkVerbStems NONEXIST ;
VPastPart gn => mkVerbStems NONEXIST
VPresPart gn => mkVerbStems nonExist ;
VPastPart gn => mkVerbStems nonExist
} ;
i = mkVerbInfo Irregular FormI ;
hasPresPart = False ;
@@ -1151,9 +1151,6 @@ resource ResMlt = ParamX ** open Prelude, Predef, Maybe in {
{- ~~~ Useful helper functions ~~~ -}
NONEXIST : Str = "#NONEXIST#" ;
-- NONEXIST : Str = Prelude.nonExist ; -- Still doesn't work in Haskell runtime 2013-08-26
-- New names for the drop/take operations
takePfx = Predef.take ;
dropPfx = Predef.drop ;