]> granicus.if.org Git - neomutt/commitdiff
drop nm_description_to_path() - unused
authorRichard Russon <rich@flatcap.org>
Wed, 3 Jul 2019 12:51:27 +0000 (13:51 +0100)
committerRichard Russon <rich@flatcap.org>
Fri, 5 Jul 2019 11:16:25 +0000 (12:16 +0100)
notmuch/mutt_notmuch.c
notmuch/mutt_notmuch.h

index 0ec9db94b856a68d18096aa1807386c90fddb4ab..843fb747b23219d1da8f1b22e2adb8f158a5c482 100644 (file)
@@ -2001,34 +2001,6 @@ done:
   return rc;
 }
 
-/**
- * nm_description_to_path - Find a path from a folder's description
- * @param desc   Description
- * @param buf    Buffer for path
- * @param buflen Length of buffer
- * @retval  0 Success
- * @retval <0 Failure
- */
-int nm_description_to_path(const char *desc, char *buf, size_t buflen)
-{
-  if (!desc || !buf || (buflen == 0))
-    return -EINVAL;
-
-  struct MailboxNode *np = NULL;
-  STAILQ_FOREACH(np, &AllMailboxes, entries)
-  {
-    if ((np->mailbox->magic == MUTT_NOTMUCH) && np->mailbox->desc &&
-        (strcmp(desc, np->mailbox->desc) == 0))
-    {
-      mutt_str_strfcpy(buf, mutt_b2s(np->mailbox->pathbuf), buflen);
-      buf[buflen - 1] = '\0';
-      return 0;
-    }
-  }
-
-  return -1;
-}
-
 /**
  * nm_record_message - Add a message to the Notmuch database
  * @param m    Mailbox
index 28c6d0894c7f94430e726420f520a2571fd13625..72b8adb40a358cac0167c5cc37036e589661d8ed 100644 (file)
@@ -58,12 +58,11 @@ extern char *C_NmRepliedTag;
 
 extern struct MxOps MxNotmuchOps;
 
-void  nm_db_debug_check             (struct Mailbox *m);
-int   nm_description_to_path     (const char *desc, char *buf, size_t buflen);
-int   nm_get_all_tags            (struct Mailbox *m, char **tag_list, int *tag_count);
+void  nm_db_debug_check          (struct Mailbox *m);
+void  nm_db_longrun_done         (struct Mailbox *m);
+void  nm_db_longrun_init         (struct Mailbox *m, bool writable);
 char *nm_email_get_folder        (struct Email *e);
-void  nm_db_longrun_done            (struct Mailbox *m);
-void  nm_db_longrun_init            (struct Mailbox *m, bool writable);
+int   nm_get_all_tags            (struct Mailbox *m, char **tag_list, int *tag_count);
 bool  nm_message_is_still_queried(struct Mailbox *m, struct Email *e);
 void  nm_parse_type_from_query   (struct NmMboxData *mdata, char *buf);
 int   nm_path_probe              (const char *path, const struct stat *st);