From 1b19aea50585218a9967e7fcd3eddf857ac458fb Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Sat, 14 Sep 2024 14:08:28 +0200 Subject: [PATCH] fix: remove duplicate function --- conlanging-eittlandic.el | 4 ---- 1 file changed, 4 deletions(-) diff --git a/conlanging-eittlandic.el b/conlanging-eittlandic.el index 714561c..f1300b0 100644 --- a/conlanging-eittlandic.el +++ b/conlanging-eittlandic.el @@ -195,10 +195,6 @@ UNDERLYING-VOWEL is non-nil." "Check whether STR end with any element of 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) "Return whether STR start with a vowel." (conlanging-eittlandic--starts-with-any-p str conlanging-eittlandic--vowels))