* @param e Email
* @retval true If the subject should be displayed
*/
-bool need_display_subject(struct Context *ctx, struct Email *e)
+static bool need_display_subject(struct Context *ctx, struct Email *e)
{
struct MuttThread *tmp = NULL, *tree = e->thread;
* @retval 0 No change
* @retval -1 Lost connection
*/
-static int nntp_group_poll(struct NntpMboxData *mdata, int update_stat)
+static int nntp_group_poll(struct NntpMboxData *mdata, bool update_stat)
{
char buf[LONG_STRING] = "";
anum_t count, first, last;
return -1;
adata->check_time = now;
- rc = nntp_group_poll(mdata, 0);
+ rc = nntp_group_poll(mdata, false);
if (rc < 0)
{
nntp_newsrc_close(adata);
if (mdata && mdata->subscribed)
{
- rc = nntp_group_poll(mdata, 1);
+ rc = nntp_group_poll(mdata, true);
if (rc < 0)
return -1;
if (rc > 0)
#. L10N: Compose menu field. May not want to translate.
#: compose.c:142 compose.c:1042 send.c:387
msgid "Subject: "
-msgstr "Subjet: "
+msgstr "Subject: "
#. L10N: Compose menu field. May not want to translate.
#: compose.c:144
static short PostCount = 0;
static struct Context *PostContext = NULL;
-static short UpdateNumPostponed = 0;
+static bool UpdateNumPostponed = false;
/**
* mutt_num_postponed - Return the number of postponed messages
if (UpdateNumPostponed)
{
- UpdateNumPostponed = 0;
+ UpdateNumPostponed = false;
force = true;
}
*/
void mutt_update_num_postponed(void)
{
- UpdateNumPostponed = 1;
+ UpdateNumPostponed = true;
}
/**