From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 894501FC46 for ; Thu, 3 Nov 2022 00:48:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1667436520; bh=nc1EZyG2jUaajm85oaIy0VHavi3kkwtg4FnV2PLNxmM=; h=From:To:Subject:Date:In-Reply-To:References:From; b=l9V1LQE1Q9VXQr13QKLTEaz37nfSMXWBQP3Cf42vG2OqAouwQRiUefJEsCJR4wtFi s/74lee9P7ZeL6PLpjQT+3gRGOK4HQSATVZ5+j5eVZ4huT/LbGXky7ykQLAYvFSqev U+LbxxkkpjpdKzwTPO3/mobAKDF/HyrsEqOMiJ7Y= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 6/6] txt2pre: linkify lei/store => lei-store-format.html Date: Thu, 3 Nov 2022 00:48:38 +0000 Message-Id: <20221103004838.26331-7-e@80x24.org> In-Reply-To: <20221103004838.26331-1-e@80x24.org> References: <20221103004838.26331-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Linking to the manpage probably helps clarify what `lei/store' refers to without too much clutter in the raw POD source. --- Documentation/txt2pre | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Documentation/txt2pre b/Documentation/txt2pre index b9d74fb7..62175f34 100755 --- a/Documentation/txt2pre +++ b/Documentation/txt2pre @@ -80,6 +80,8 @@ for (qw[lei(1) /\Alei-(.+?)\(1\)\z/ and $xurls{"lei $1"} = "$n.html"; } +$xurls{'lei/store'} = 'lei-store-format.html'; + for (qw[make(1) flock(2) setrlimit(2) vfork(2) tmpfs(5) inotify(7) unix(7) syslog(3)]) { my ($n, $s) = (/([\w\-]+)\((\d)\)/);