1
0
forked from GitHub/gf-rgl

making Arabic minimal compile; strange chars remain

This commit is contained in:
aarne
2009-12-08 07:32:46 +00:00
parent f2335d1b76
commit 1afa6540d2
3 changed files with 8 additions and 8 deletions

View File

@@ -41,9 +41,9 @@ flags optimize = all ;--noexpand; coding=utf8 ;
vowel : Case => Str =
table {
Nom => "ُ";
Acc => "َ";
Gen => "ِ"
Nom => "ُ";
Acc => "َ";
Gen => "ِ"
};
}

View File

@@ -355,7 +355,7 @@ resource ParadigmsAra = open
-- e.g. al-jamii3, 2a7ad
regNP : Str -> Number -> NP = \word,n ->
{ s = \\c => word + vowel ! c ;
{ s = \\c => word ++ vowel ! c ; ---- gives strange chars
a = {pgn = Per3 Masc n; isPron = False };
lock_NP = <>
};