]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
small little whitespace annoyance
authorJelte Jansen <jeltejan@NLnetLabs.nl>
Tue, 26 Apr 2005 12:35:29 +0000 (12:35 +0000)
committerJelte Jansen <jeltejan@NLnetLabs.nl>
Tue, 26 Apr 2005 12:35:29 +0000 (12:35 +0000)
doc/doxyparse.pl

index 9ae29f92153b561c67d41eee23ed56656100516f..d86885db2f3fefdfa0d63f27a4738a1e14f66d8a 100755 (executable)
@@ -147,7 +147,9 @@ foreach (keys %manpages) {
        print MAN  ".PP\n";
 
        foreach (@$a) {
-               print MAN  $return{$_}, " ", $_;
+               $b = $return{$_};
+               $b =~ s/\s+$//;
+               print MAN  $b, " ", $_;
                print MAN  "(", $api{$_},");\n";
                print MAN  ".PP\n";
        }