From 3bf588bddfd6ffd419a589f42281379d3e84629a Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Fri, 25 Oct 2024 03:19:57 +0000 Subject: [PATCH] learn: use Perl 5.12 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 12a82de99..b7f98dcc9 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; -- 2.47.3