hard-coded maximum window width of 179 chars for some things,
when COLS is easily available.
+Mon Mar 8 10:14:27 GMT 2004 Colin Watson <cjwatson@debian.org>
+
+ * dselect/methlist.cc, dselect/pkgdisplay.cc: Set the total display width
+ to the maximum of TOTAL_LIST_WIDTH and COLS, improving display on wide
+ terminals.
+
Thu Mar 4 13:28:11 GMT 2004 Scott James Remnant <scott@netsplit.com>
* lib/tarfn.c: Copy the Name and LinkName elements and ensure they
* Distinguish unmet build dependencies from build conflicts.
Closes: #217943, #235266.
* Force NULL-termination of all tar file entry names. Closes: #232025.
+ * Allow dselect to use the full window width. Closes: #139781.
-- Scott James Remnant <scott@netsplit.com> UNRELEASED
description_column= name_column + name_width + gap_width;
total_width= TOTAL_LIST_WIDTH;
+ if (total_width < COLS)
+ total_width= COLS;
description_width= total_width - description_column;
}
}
total_width= TOTAL_LIST_WIDTH;
+ if (total_width < COLS)
+ total_width= COLS;
description_width= total_width - description_column;
}