]> granicus.if.org Git - neomutt/commitdiff
Remove unused functions
authorPietro Cerutti <gahr@gahr.ch>
Tue, 25 Jul 2017 15:53:10 +0000 (15:53 +0000)
committerRichard Russon <rich@flatcap.org>
Sat, 5 Aug 2017 17:53:06 +0000 (18:53 +0100)
Issue #374

list.h
mutt.h
muttlib.c

diff --git a/list.h b/list.h
index a6cafbbb7e902d930dfb54eb97af9479e0134bfe..a83c81be2d944aa3ddb883d9f2e3d79d5842e700 100644 (file)
--- a/list.h
+++ b/list.h
@@ -94,6 +94,10 @@ static inline void mutt_stailq_free(struct STailQHead *h)
   STAILQ_INIT(h);
 }
 
+/**
+ * mutt_stailq_match - Is the string in the list
+ * @return true if the header contained in "s" is in list "h"
+ */
 static inline bool mutt_stailq_match(const char *s, struct STailQHead *h)
 {
   struct STailQNode *np;
diff --git a/mutt.h b/mutt.h
index f6cd9c160641c1ccd05381b1dc6d1f175280ea50..a0104608a6fb6c4bcbda19b4ada1150a95a3f0d7 100644 (file)
--- a/mutt.h
+++ b/mutt.h
@@ -317,7 +317,6 @@ void mutt_free_list(struct List **list);
 void mutt_free_rx_list(struct RxList **list);
 void mutt_free_replace_list(struct ReplaceList **list);
 int mutt_matches_ignore(const char *s);
-bool mutt_matches_list(const char *s, struct List *t);
 
 /* add an element to a list */
 struct List *mutt_add_list(struct List *head, const char *data);
index f4daa21eb977127994ec2bd2d7b0ccbb60bb5cd0..840bc5b628e10788282e5d762b68b5cb94f05ed4 100644 (file)
--- a/muttlib.c
+++ b/muttlib.c
@@ -358,24 +358,10 @@ void mutt_free_header(struct Header **h)
   FREE(h);
 }
 
-/**
- * mutt_matches_list - Is the string in the list
- * @retval true if the header contained in "s" is in list "t"
- */
-bool mutt_matches_list(const char *s, struct List *t)
-{
-  for (; t; t = t->next)
-  {
-    if ((mutt_strncasecmp(s, t->data, mutt_strlen(t->data)) == 0) || *t->data == '*')
-      return true;
-  }
-  return false;
-}
-
 /**
  * mutt_matches_ignore - Does the string match the ignore list
  *
- * checks Ignore and UnIgnore using mutt_matches_list
+ * checks Ignore and UnIgnore using mutt_stailq_match
  */
 int mutt_matches_ignore(const char *s)
 {