Somehow this naming with an underscore crept in, (but only in the
private header, so notmuch.c was compiling with no prototype). Fix
to be the notmuch_thread_get_subject originally intended.
void
_notmuch_thread_set_subject (notmuch_thread_t *thread, const char *subject);
-const char *
-_notmuch_thread_get_subject (notmuch_thread_t *thread);
-
/* message.cc */
notmuch_message_t *
printf ("%s %s",
notmuch_thread_get_thread_id (thread),
- _notmuch_thread_get_subject (thread));
+ notmuch_thread_get_subject (thread));
printf (" (");
for (tags = notmuch_thread_get_tags (thread);
}
const char *
-_notmuch_thread_get_subject (notmuch_thread_t *thread)
+notmuch_thread_get_subject (notmuch_thread_t *thread)
{
return thread->subject;
}