browser_highlight_default(&state, menu);
init_menu(&state, menu, title, sizeof(title), mailbox);
- if (goto_swapper[0] != '\0')
- goto_swapper[0] = '\0';
+ goto_swapper[0] = '\0';
break;
}
}
mutt_menu_free(&menu);
}
- if (goto_swapper[0] != '\0')
- goto_swapper[0] = '\0';
+ goto_swapper[0] = '\0';
}
/**
cdef->initial = IP mutt_str_strdup(value);
}
- return CSR_SUCCESS;
+ return rc;
}
/**
fd_set rfds;
unsigned long wait_millis;
struct timeval tv;
- size_t pre_t, post_t;
if (conn->fd < 0)
return -1;
FD_ZERO(&rfds);
FD_SET(conn->fd, &rfds);
- pre_t = mutt_date_epoch_ms();
+ size_t pre_t = mutt_date_epoch_ms();
const int rc = select(conn->fd + 1, &rfds, NULL, NULL, &tv);
- post_t = mutt_date_epoch_ms();
+ size_t post_t = mutt_date_epoch_ms();
if ((rc > 0) || ((rc < 0) && (errno != EINTR)))
return rc;
{
if (a->type == TYPE_MULTIPART)
{
- if (a->encoding != ENC_7BIT)
- a->encoding = ENC_7BIT;
-
+ a->encoding = ENC_7BIT;
transform_to_7bit(a->parts, fp_in);
}
else if (mutt_is_message_type(a->type, a->subtype))