]> granicus.if.org Git - neomutt/commitdiff
tidy code
authorRichard Russon <rich@flatcap.org>
Sat, 26 Mar 2016 03:56:18 +0000 (03:56 +0000)
committerRichard Russon <rich@flatcap.org>
Mon, 4 Apr 2016 02:34:40 +0000 (03:34 +0100)
pager.c

diff --git a/pager.c b/pager.c
index b249556dc6cafe9b5f9b1ead8f1b87f38a82964c..45d40cd42636efc859486b26263517b21e12597c 100644 (file)
--- 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))))