diff --git a/src/maltese/AllMlt.gf b/src/maltese/AllMlt.gf index 1a37a34f..58334086 100644 --- a/src/maltese/AllMlt.gf +++ b/src/maltese/AllMlt.gf @@ -10,7 +10,7 @@ concrete AllMlt of AllMltAbs = LangMlt, DictMlt, IrregMlt, - ExtraMlt - ** { + ExtendMlt + ** open ExtraMlt in { } ; diff --git a/src/maltese/AllMltAbs.gf b/src/maltese/AllMltAbs.gf index 5a545fc6..dcd022b3 100644 --- a/src/maltese/AllMltAbs.gf +++ b/src/maltese/AllMltAbs.gf @@ -10,5 +10,5 @@ abstract AllMltAbs = Lang, DictMltAbs, IrregMltAbs, - ExtraMltAbs + Extend ** {} ; diff --git a/src/maltese/ExtendMlt.gf b/src/maltese/ExtendMlt.gf new file mode 100644 index 00000000..fdfd8856 --- /dev/null +++ b/src/maltese/ExtendMlt.gf @@ -0,0 +1,7 @@ +concrete ExtendMlt of Extend = + CatMlt ** ExtendFunctor - [ + ComplDirectVS, + ComplDirectVQ + ] + with (Grammar = GrammarMlt) ** { +}