Commit d4c9a959 d4c9a9594f1285de5e7619f5526349bc3d5450bf by Sergey Poznyakoff

Bugfix: Did not display the last message when the number of lines in

last page was less than pagelines.
1 parent 637b0e85
Showing 1 changed file with 1 additions and 1 deletions
......@@ -140,7 +140,7 @@ mail_z (int argc, char **argv)
cursor += count;
if (cursor + nlines > total)
nlines = total - cursor;
nlines = total - cursor + 1;
if (nlines <= 0)
{
......