Git fork

Documentation: remove unneeded argument in cat-texi.perl

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>

authored by

brian m. carlson and committed by
Junio C Hamano
a7e1b15c b56867c9

+2 -2
+2 -2
Documentation/cat-texi.perl
··· 20 20 } 21 21 close $tmp; 22 22 23 - printf '\input texinfo 23 + print '\input texinfo 24 24 @setfilename gitman.info 25 25 @documentencoding UTF-8 26 26 @dircategory Development ··· 31 31 @top Git Manual Pages 32 32 @documentlanguage en 33 33 @menu 34 - ', $menu[0]; 34 + '; 35 35 36 36 for (@menu) { 37 37 print "* ${_}::\n";