diff --git a/src/maltese/AllMlt.gf b/src/maltese/AllMlt.gf index 1a37a34fa..58334086e 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 5a545fc6b..dcd022b32 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 000000000..fdfd88561 --- /dev/null +++ b/src/maltese/ExtendMlt.gf @@ -0,0 +1,7 @@ +concrete ExtendMlt of Extend = + CatMlt ** ExtendFunctor - [ + ComplDirectVS, + ComplDirectVQ + ] + with (Grammar = GrammarMlt) ** { +}