Fix a copy+paste blunder.
This commit is contained in:
PatR
2021-07-17 12:16:03 -07:00
parent 8ff2badf51
commit fc62610ee3

View File

@@ -1691,7 +1691,7 @@ just_an(char *outbuf, const char *str)
&& (strncmpi(str, "one", 3) || (str[3] && !index("-_ ", str[3])))
/* long 'u' initial sound */
&& strncmpi(str, "eu", 2) /* "eucalyptus leaf" */
&& strncmpi(str, "uke", 7) && strncmpi(str, "ukulele", 7)
&& strncmpi(str, "uke", 3) && strncmpi(str, "ukulele", 7)
&& strncmpi(str, "unicorn", 7) && strncmpi(str, "uranium", 7)
&& strncmpi(str, "useful", 6)) /* "useful tool" */
|| (c0 == 'x' && !index(vowels, lowc(str[1]))))