]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Documentation: remove unneeded argument in cat-texi.perl
authorbrian m. carlson <sandals@crustytoothpaste.net>
Sun, 22 Jan 2017 02:41:52 +0000 (02:41 +0000)
committerJunio C Hamano <gitster@pobox.com>
Mon, 23 Jan 2017 18:56:47 +0000 (10:56 -0800)
The newly-added use of the warnings pragma exposes that the $menu[0]
argument to printf has long been silently ignored, since there is no
format specifier for it.  It doesn't appear that the argument is
actually needed, either: there is no reason to insert the name of one
particular documentation page anywhere in the header that's being
generated.

Remove the unused argument, and since the format specification
functionality is no longer needed, convert the printf to a simple print.

Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/cat-texi.perl

index 1bc84d3c7cc5dbf5da5c0c8cf4f0e9be5866770e..14d2f834151712fa84e13209a65f0f7121b49dd7 100755 (executable)
@@ -20,7 +20,7 @@ while (<STDIN>) {
 }
 close $tmp;
 
-printf '\input texinfo
+print '\input texinfo
 @setfilename gitman.info
 @documentencoding UTF-8
 @dircategory Development
@@ -31,7 +31,7 @@ printf '\input texinfo
 @top Git Manual Pages
 @documentlanguage en
 @menu
-', $menu[0];
+';
 
 for (@menu) {
        print "* ${_}::\n";