diff options
Diffstat (limited to 'Documentation/lint-gitlink.perl')
| -rwxr-xr-x | Documentation/lint-gitlink.perl | 10 | 
1 files changed, 6 insertions, 4 deletions
| diff --git a/Documentation/lint-gitlink.perl b/Documentation/lint-gitlink.perl index b22a367844..1c61dd9512 100755 --- a/Documentation/lint-gitlink.perl +++ b/Documentation/lint-gitlink.perl @@ -5,11 +5,12 @@ use warnings;  # Parse arguments, a simple state machine for input like:  # -# howto/*.txt config/*.txt --section=1 git.txt git-add.txt [...] --to-lint git-add.txt a-file.txt [...] +# <file-to-check.txt> <valid-files-to-link-to> --section=1 git.txt git-add.txt [...] --to-lint git-add.txt a-file.txt [...]  my %TXT;  my %SECTION;  my $section;  my $lint_these = 0; +my $to_check = shift @ARGV;  for my $arg (@ARGV) {  	if (my ($sec) = $arg =~ /^--section=(\d+)$/s) {  		$section = $sec; @@ -30,13 +31,14 @@ sub report {  	my ($pos, $line, $target, $msg) = @_;  	substr($line, $pos) = "' <-- HERE";  	$line =~ s/^\s+//; -	print "$ARGV:$.: error: $target: $msg, shown with 'HERE' below:\n"; -	print "$ARGV:$.:\t'$line\n"; +	print STDERR "$ARGV:$.: error: $target: $msg, shown with 'HERE' below:\n"; +	print STDERR "$ARGV:$.:\t'$line\n";  	$exit_code = 1;  }  @ARGV = sort values %TXT; -die "BUG: Nothing to process!" unless @ARGV; +die "BUG: No list of valid linkgit:* files given" unless @ARGV; +@ARGV = $to_check;  while (<>) {  	my $line = $_;  	while ($line =~ m/linkgit:((.*?)\[(\d)\])/g) { | 
