From a05b31648908c663867fdb00666ce97cdb6d3c1b Mon Sep 17 00:00:00 2001
From: Eric Wong <e@80x24.org>
Date: Sun, 17 Jan 2021 07:09:55 +0000
Subject: [PATCH] address: pairs: enable pure Perl version

Oops, this is needed for systems lacking Email::Address::XS
---
 lib/PublicInbox/Address.pm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/PublicInbox/Address.pm b/lib/PublicInbox/Address.pm
index a090fa43..2c9c4395 100644
--- a/lib/PublicInbox/Address.pm
+++ b/lib/PublicInbox/Address.pm
@@ -37,6 +37,7 @@ if ($@) {
 	require PublicInbox::AddressPP;
 	*emails = \&PublicInbox::AddressPP::emails;
 	*names = \&PublicInbox::AddressPP::names;
+	*pairs = \&PublicInbox::AddressPP::pairs;
 }
 
 1;
-- 
2.51.0