fix: remove duplicate function
Some checks failed
CI / build (29.4) (push) Failing after 1m32s
CI / build (snapshot) (push) Failing after 54s

This commit is contained in:
Lucien Cartier-Tilet 2024-09-14 14:08:28 +02:00
parent 7a97a51361
commit 1b19aea505
Signed by: phundrak
GPG Key ID: 347803E8073EACE0

View File

@ -195,10 +195,6 @@ UNDERLYING-VOWEL is non-nil."
"Check whether STR end with any element of LIST." "Check whether STR end with any element of LIST."
(seq-some (lambda (elt) (s-ends-with-p elt str)) list)) (seq-some (lambda (elt) (s-ends-with-p elt str)) list))
(defun conlanging-eittlandic--ends-with-a-vowel-p (str)
"Return whether STR end with a vowel."
(conlanging-eittlandic--ends-with-any-p str conlanging-eittlandic--vowels))
(defun conlanging-eittlandic--starts-with-a-vowel-p (str) (defun conlanging-eittlandic--starts-with-a-vowel-p (str)
"Return whether STR start with a vowel." "Return whether STR start with a vowel."
(conlanging-eittlandic--starts-with-any-p str conlanging-eittlandic--vowels)) (conlanging-eittlandic--starts-with-any-p str conlanging-eittlandic--vowels))