Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag '4.4-fix' of git://git.lwn.net/linux

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

+1 -1
+1 -1
scripts/kernel-doc
··· 2711 2711 2712 2712 # generate a sequence of code that will splice in highlighting information 2713 2713 # using the s// operator. 2714 - foreach my $k (keys @highlights) { 2714 + for (my $k = 0; $k < @highlights; $k++) { 2715 2715 my $pattern = $highlights[$k][0]; 2716 2716 my $result = $highlights[$k][1]; 2717 2717 # print STDERR "scanning pattern:$pattern, highlight:($result)\n";