From 0344cf223523ae5c2f9348e5949b710a2880d740 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 10 Sep 2007 12:15:33 +0000 Subject: use ">" instead of "*" to mean ellipsis (as suggested by Olivier Faurax on cooker@) --- urpm/msg.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/urpm/msg.pm b/urpm/msg.pm index dcb99056..31719dbc 100644 --- a/urpm/msg.pm +++ b/urpm/msg.pm @@ -158,7 +158,7 @@ sub _format_line_selected_packages { foreach my $max (@format_line_field_sizes) { foreach (@l) { if ($max && length($_->[$i]) > $max) { - $_->[$i] = substr($_->[$i], 0, $max-1) . '*'; + $_->[$i] = substr($_->[$i], 0, $max-1) . '>'; } } $i++; -- cgit v1.2.1