This commit is contained in:
nhmall
2018-03-15 22:19:28 -04:00
parent 467e3bfdab
commit c42dc27330

View File

@@ -2100,8 +2100,10 @@ const char *const *alt_as_is; /* another set like as_is[] */
Strcasecpy(endstring, "s");
return TRUE;
}
/* skip "ox" -> "oxen" entry when pluralizing "<something>ox" */
if (to_plural && strlen(basestr) > 2 && !strcmpi(endstring - 2, "ox")) {
/* skip "ox" -> "oxen" entry when pluralizing "<something>ox"
unless it is muskox */
if (to_plural && strlen(basestr) > 2 && !strcmpi(endstring - 2, "ox")
&& strcmpi(endstring - 6, "muskox")) {
/* "fox" -> "foxes" */
Strcasecpy(endstring, "es");
return TRUE;