padding is specified, put it after the last element.
+2005-05-21 Richard M. Stallman <rms@gnu.org>
+
+ * xdisp.c (display_mode_element): If we're processing a list and
+ padding is specified, put it after the last element.
+
2005-05-21 Eli Zaretskii <eliz@gnu.org>
* fileio.c (Fexpand_file_name) [DOS_NT]: Don't try to support
&& --limit > 0
&& (precision <= 0 || n < precision))
{
- n += display_mode_element (it, depth, field_width - n,
+ n += display_mode_element (it, depth,
+ /* Do padding only after the last
+ element in the list. */
+ (! CONSP (XCDR (elt))
+ ? field_width - n
+ : 0),
precision - n, XCAR (elt),
props, risky);
elt = XCDR (elt);