Next Report

- Removed all traces of the old next report.
- Removed rc.next support.
This commit is contained in:
Paul Beckingham
2011-05-08 19:27:29 -04:00
parent 5da435e70d
commit b4fba5b08d
7 changed files with 13 additions and 209 deletions

View File

@@ -287,10 +287,10 @@ int handleCustomReport (const std::string& report, std::string& outs)
<< tasks.size ()
<< (tasks.size () == 1 ? " task" : " tasks");
if (maxrows && maxrows < view.rows ())
if (maxrows && maxrows < tasks.size ())
out << ", " << maxrows << " shown";
if (maxlines && maxlines < view.rows ())
if (maxlines && maxlines < tasks.size ())
out << ", truncated to " << maxlines - table_header << " lines";
out << "\n";