]> Sergey Matveev's repositories - public-inbox.git/blobdiff - Documentation/txt2pre
doc: txt2pre: fix URL of git-filter-repo(1)
[public-inbox.git] / Documentation / txt2pre
index c3a7657e6157a216c864d6f22bb1c514fe4eb817..e9b5eb7db10ddf3a3ad0322454fba6fd3a898402 100755 (executable)
@@ -39,9 +39,9 @@ for (qw[copydatabase(1) xapian-compact(1)]) {
        $xurls{$_} = ".$n.1.html"
 }
 
-for (qw[flock(2) setrlimit(2) vfork(2)]) {
+for (qw[make(1) flock(2) setrlimit(2) vfork(2) tmpfs(5)]) {
        my ($n, $s) = (/([\w\-]+)\((\d)\)/);
-       $xurls{$_} = "http://www.man7.org/linux/man-pages/man2/$n.$s.html";
+       $xurls{$_} = "http://www.man7.org/linux/man-pages/man$s/$n.$s.html";
 }
 
 for (qw[git(1)
@@ -79,9 +79,10 @@ $xurls{'grok-pull'} =
        'https://git.kernel.org/pub/scm/utils/grokmirror/grokmirror.git' .
        '/tree/man/grok-pull.1.rst';
 $xurls{'git-filter-repo(1)'} = 'https://github.com/newren/git-filter-repo'.
-                       './blob/master/Documentation/git-filter-repo.txt';
+                       '/blob/master/Documentation/git-filter-repo.txt';
 $xurls{'ssoma(1)'} = 'https://ssoma.public-inbox.org/ssoma.txt';
 $xurls{'cgitrc(5)'} = 'https://git.zx2c4.com/cgit/tree/cgitrc.5.txt';
+$xurls{'prove(1)'} = 'https://perldoc.perl.org/prove.html';
 
 my $str = do { local $/; <STDIN> };
 my ($title) = ($str =~ /\A([^\n]+)/);