]> err.no Git - dpkg/commitdiff
Print update-alternatives '--config' listing layout evenly spaced.
authorGuillem Jover <guillem@debian.org>
Fri, 16 Jun 2006 05:42:18 +0000 (05:42 +0000)
committerGuillem Jover <guillem@debian.org>
Fri, 16 Jun 2006 05:42:18 +0000 (05:42 +0000)
Closes: #325895
ChangeLog
debian/changelog
scripts/update-alternatives.pl

index b7f2efb82af7c3c6e071871b061989cecd56aab6..73f46e7870b2c241b10babc177776a8a110730f4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-06-16  Guillem Jover  <guillem@debian.org>
+
+       * scripts/update-alternatives.pl (config_message): Print '--config'
+       listing layout evenly spaced.
+
 2006-06-07  Guillem Jover  <guillem@debian.org>
 
        * scripts/dpkg-scansources.pl: Remove invalid comment mentioning
index d34f3ea667d3bbbd338a6d333ed80e155e39cbed..2dab6b657d53df0dd27603426b397be5ed73816e 100644 (file)
@@ -5,6 +5,8 @@ dpkg (1.13.22~) UNRELEASED; urgency=low
     introduced in that version. Thanks to Sergio Gelato. Closes: #370536
   * Add '.bzrtags' directory to default dpkg-source -i regex.
     Suggested by Adeodato Simó. Closes: #370392
+  * Print update-alternatives '--config' listing layout evenly spaced.
+    Closes: #325895
 
   [ Updated dpkg Translations ]
   * Romanian (Eddy Petrişor).
index 9e9c0a705db8ad9c4b5a2ca34c45da6f2977bd7c..b482526fec36c15d6cda3d9a7615896067e61010 100755 (executable)
@@ -555,7 +555,7 @@ sub config_message {
                      "-----------------------------------------------\n"),
                   $#versions+1, $name);
     for ($i=0; $i<=$#versions; $i++) {
-       printf(STDOUT "%s%s    %s        %s\n", 
+       printf(STDOUT "%s%s %8s    %s\n",
            (readlink("$altdir/$name") eq $versions[$i]) ? '*' : ' ',
            ($best eq $versions[$i]) ? '+' : ' ',
            $i+1, $versions[$i]);