10,794
edits
TheNightAvl (talk | contribs) mNo edit summary |
TheNightAvl (talk | contribs) mNo edit summary |
||
Line 887: | Line 887: | ||
-- Resolution of geminates -- | -- Resolution of geminates -- | ||
if p_next == p_current and (boundary[p_next2] or p_next2 == nil or consonant[p_next2]) and consonant[p_current] then | if p_next == p_current and (boundary[p_next2] or p_next2 == nil or consonant[p_next2]) and p_next2 ~= "j" and p_next2 ~= "w" and consonant[p_current] then | ||
p_RemoveNext() | p_RemoveNext() | ||
-- mw.log("Geminate [" .. p_current .. "] removed in coda position at position " .. i .. ".") | -- mw.log("Geminate [" .. p_current .. "] removed in coda position at position " .. i .. ".") | ||
Line 923: | Line 923: | ||
p_Convert("ɲ") | p_Convert("ɲ") | ||
p_RemoveNext() | p_RemoveNext() | ||
end | |||
if p_current == "n" and p_next == "n" and p_next2 == "j" then | |||
-- mw.log("phon = true:") | |||
p_Convert("ɲ") | |||
end | end | ||