Skip to content

Commit

Permalink
Merge tag '4.4-fix' of git://git.lwn.net/linux
Browse files Browse the repository at this point in the history
Pull documentation fix from Jon Corbet:
 "A single fix from Mauro for a 4.4 regression that would cause the docs
  build to fail on systems with ancient Perl installations"

* tag '4.4-fix' of git://git.lwn.net/linux:
  kernel-doc: Make it compatible with Perl versions below 5.12 again
  • Loading branch information
Linus Torvalds committed Nov 20, 2015
2 parents 9580306 + 1ef0623 commit 116dfe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/kernel-doc
Original file line number Diff line number Diff line change
Expand Up @@ -2711,7 +2711,7 @@ $kernelversion = get_kernel_version();

# generate a sequence of code that will splice in highlighting information
# using the s// operator.
foreach my $k (keys @highlights) {
for (my $k = 0; $k < @highlights; $k++) {
my $pattern = $highlights[$k][0];
my $result = $highlights[$k][1];
# print STDERR "scanning pattern:$pattern, highlight:($result)\n";
Expand Down

0 comments on commit 116dfe5

Please sign in to comment.