* top.c (command_loop): Fix output for shrinkage.

This commit is contained in:
Daniel Jacobowitz 2007-10-22 16:11:13 +00:00
parent 44742d57fb
commit 57ee890f2f
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2007-10-22 Daniel Jacobowitz <dan@codesourcery.com>
* top.c (command_loop): Fix output for shrinkage.
2007-10-22 Daniel Jacobowitz <dan@codesourcery.com>
* cp-name-parser.y (exp1): Add & ( var ) as a reference expression.

View File

@ -545,9 +545,9 @@ command_loop (void)
long space_now = lim - lim_at_start;
long space_diff = space_now - space_at_cmd_start;
printf_unfiltered (_("Space used: %ld (%c%ld for this command)\n"),
printf_unfiltered (_("Space used: %ld (%s%ld for this command)\n"),
space_now,
(space_diff >= 0 ? '+' : '-'),
(space_diff >= 0 ? "+" : ""),
space_diff);
#endif
}