From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id B9B491F4C6 for ; Fri, 25 Oct 2024 03:19:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1729826398; bh=nOA9gZaCN7vf9BYEIC/BVOX597vuKwH3af/9ACVwGak=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Bb8HjIVAkQ3kNePK9i/7A8DYI+R8Z4nfYOd5+OwciAewmSOuuuSAToezvUSAM4K2P eYZw9YLjt0KmVr+AkKFQgYEHSnd8lg+ci8MNl4UwSTBMAV3x6KOiAjEQJTtOeY0OPN p3AEisiT3tgdVMqs0QpBmVFhTR5IaOj/YiXne5VI= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 3/3] learn: use Perl 5.12 Date: Fri, 25 Oct 2024 03:19:57 +0000 Message-ID: <20241025031957.1305385-4-e@80x24.org> In-Reply-To: <20241025031957.1305385-1-e@80x24.org> References: <20241025031957.1305385-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: No `unicode_strings' feature dependencies, here, so it's safe to get rid of the extra overhead required in loading strict.pm. --- script/public-inbox-learn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/public-inbox-learn b/script/public-inbox-learn index 12a82de9..b7f98dcc 100755 --- a/script/public-inbox-learn +++ b/script/public-inbox-learn @@ -20,7 +20,7 @@ options: See public-inbox-learn(1) man page for full documentation. EOF -use strict; +use v5.12; use PublicInbox::Config; use PublicInbox::InboxWritable; use PublicInbox::Eml;