hfi.pager_progress = ExtPagerProgress;
hfi.email = cur;
mutt_make_string_info(buf, sizeof(buf), MuttIndexWindow->cols,
- NONULL(PagerFormat), &hfi, MUTT_FORMAT_MAKEPRINT);
+ NONULL(PagerFormat), &hfi, 0);
fputs(buf, fpout);
fputs("\n\n", fpout);
}
{
MUTT_FORMAT_FORCESUBJ = (1 << 0), ///< print the subject even if unchanged
MUTT_FORMAT_TREE = (1 << 1), ///< draw the thread tree
- MUTT_FORMAT_MAKEPRINT = (1 << 2), ///< make sure that all chars are printable
- MUTT_FORMAT_OPTIONAL = (1 << 3), ///< allow optional field processing
- MUTT_FORMAT_STAT_FILE = (1 << 4), ///< used by attach_format_str
- MUTT_FORMAT_ARROWCURSOR = (1 << 5), ///< reserve space for arrow_cursor
- MUTT_FORMAT_INDEX = (1 << 6), ///< this is a main index entry
- MUTT_FORMAT_NOFILTER = (1 << 7), ///< do not allow filtering on this pass
- MUTT_FORMAT_PLAIN = (1 << 8), ///< do not prepend DISP_TO, DISP_CC ...
+ MUTT_FORMAT_OPTIONAL = (1 << 2), ///< allow optional field processing
+ MUTT_FORMAT_STAT_FILE = (1 << 3), ///< used by attach_format_str
+ MUTT_FORMAT_ARROWCURSOR = (1 << 4), ///< reserve space for arrow_cursor
+ MUTT_FORMAT_INDEX = (1 << 5), ///< this is a main index entry
+ MUTT_FORMAT_NOFILTER = (1 << 6), ///< do not allow filtering on this pass
+ MUTT_FORMAT_PLAIN = (1 << 7), ///< do not prepend DISP_TO, DISP_CC ...
};
/**
if (!e)
return;
- enum FormatFlag flag = MUTT_FORMAT_MAKEPRINT | MUTT_FORMAT_ARROWCURSOR | MUTT_FORMAT_INDEX;
+ enum FormatFlag flag = MUTT_FORMAT_ARROWCURSOR | MUTT_FORMAT_INDEX;
struct MuttThread *tmp = NULL;
if ((Sort & SORT_MASK) == SORT_THREADS && e->tree)
size_t l2 = sizeof(buffer);
hfi.email = (IsEmail(rd->extra)) ? rd->extra->email : rd->extra->bdy->email;
mutt_make_string_info(buffer, l1 < l2 ? l1 : l2, rd->pager_status_window->cols,
- NONULL(PagerFormat), &hfi, MUTT_FORMAT_MAKEPRINT);
+ NONULL(PagerFormat), &hfi, 0);
mutt_draw_statusline(rd->pager_status_window->cols, buffer, l2);
}
else
MessageFormat && aptr->content->email)
{
char s[SHORT_STRING];
- mutt_make_string_flags(
- s, sizeof(s), MessageFormat, NULL, aptr->content->email,
- MUTT_FORMAT_FORCESUBJ | MUTT_FORMAT_MAKEPRINT | MUTT_FORMAT_ARROWCURSOR);
+ mutt_make_string_flags(s, sizeof(s), MessageFormat, NULL,
+ aptr->content->email,
+ MUTT_FORMAT_FORCESUBJ | MUTT_FORMAT_ARROWCURSOR);
if (*s)
{
mutt_format_s(buf, buflen, prec, s);