From: Richard Russon Date: Sat, 26 Mar 2016 03:56:18 +0000 (+0000) Subject: tidy code X-Git-Tag: neomutt-20160404~7^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7e83d52ac21a778e2aa7a1fad9f639bd4b79e377;p=neomutt tidy code --- diff --git a/pager.c b/pager.c index b249556dc..45d40cd42 100644 --- a/pager.c +++ b/pager.c @@ -2249,7 +2249,7 @@ search_next: int dretval = 0; int new_topline = topline; - while ((new_topline + SkipQuotedOffset < lastLine || + while (((new_topline + SkipQuotedOffset) < lastLine || (0 == (dretval = display_line (fp, &last_pos, &lineInfo, new_topline, &lastLine, &maxLine, M_TYPES | (flags & M_PAGER_NOWRAP), &QuoteList, &q_level, &force_redraw, &SearchRE)))) @@ -2262,7 +2262,7 @@ search_next: break; } - while ((new_topline + SkipQuotedOffset < lastLine || + while (((new_topline + SkipQuotedOffset) < lastLine || (0 == (dretval = display_line (fp, &last_pos, &lineInfo, new_topline, &lastLine, &maxLine, M_TYPES | (flags & M_PAGER_NOWRAP), &QuoteList, &q_level, &force_redraw, &SearchRE))))