Skip to content

Commit

Permalink
yiddish: Avoid generating empty stem
Browse files Browse the repository at this point in the history
  • Loading branch information
ojwb committed Jan 22, 2025
1 parent 1411289 commit 9a22f0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions algorithms/yiddish.sbl
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ define mark_regions as (
(
try (
// Replace past participle ge- at start of word
// Unless word starts with gelt- or gebn-
// Unless word starts with gelt- or gebn- or the whole word is ge
['{Giml}{Ayen}']
not ('{Lamed}{Tes}' or '{Beys}{Nun}') <- 'GE'
not ('{Lamed}{Tes}' or '{Beys}{Nun}' or atlimit) <- 'GE'
)

try (
Expand Down

0 comments on commit 9a22f0d

Please sign in to comment.