hg tip:
+ $honor_disposition to honor Content-Disposition headers
- ! $pager_context specifies number of search context lines, too
+ + $search_context specifies number of context lines for search results
+ in pager/page-based menus
+ ssl_use_sslv2 defaults to no
+ uncolor works for header + body objects, too
+ the "flagged" and "replied" flags are enabled/supported for
WHERE char *QueryCmd;
WHERE char *QueryFormat;
WHERE char *Realname;
+WHERE short SearchContext;
WHERE char *SendCharset;
WHERE char *Sendmail;
WHERE char *Shell;
** mutt scores are always greater than or equal to zero, the default setting
** of this variable will never mark a message read.
*/
+ { "search_context", DT_NUM, R_NONE, UL &SearchContext, UL 0 },
+ /*
+ ** .pp
+ ** For the pager, this variable specifies the number of lines shown
+ ** before search results. By default, search results will be top-aligned.
+ */
{ "send_charset", DT_STR, R_NONE, UL &SendCharset, UL "us-ascii:iso-8859-1:utf-8" },
/*
** .pp
{
wrapped = 0;
- if (PagerContext > 0 && PagerContext < LINES - 2 - option (OPTHELP) ? 1 : 0)
- searchctx = PagerContext;
+ if (SearchContext > 0 && SearchContext < LINES - 2 - option (OPTHELP) ? 1 : 0)
+ searchctx = SearchContext;
else
searchctx = 0;
{
SearchFlag = M_SEARCH;
/* give some context for search results */
- if (PagerContext > 0 && PagerContext < LINES - 2 - option (OPTHELP) ? 1 : 0)
- searchctx = PagerContext;
+ if (SearchContext > 0 && SearchContext < LINES - 2 - option (OPTHELP) ? 1 : 0)
+ searchctx = SearchContext;
else
searchctx = 0;
if (topline - searchctx > 0)