about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-08-26 08:17:42 +0000
committerEric Wong <e@yhbt.net>2020-08-27 10:57:28 +0000
commit4de74f0fb6a8aa1e8393cb7ca855fdff81699626 (patch)
tree0f6bdc5af047dd6665ba86cb3c02ca1821c3324a /lib
parent6e2da35b9e9e5510e3156b07e91ebc835146758c (diff)
downloadpublic-inbox-4de74f0fb6a8aa1e8393cb7ca855fdff81699626.tar.gz
We use the defined-or (`//', `//=') operators in 5.10,
so require 5.10.1 like the rest of our codebase.  Update
an outdated comment while we're at it.
Diffstat (limited to 'lib')
-rw-r--r--lib/PublicInbox/Msgmap.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/PublicInbox/Msgmap.pm b/lib/PublicInbox/Msgmap.pm
index d28e96c8..d696ce83 100644
--- a/lib/PublicInbox/Msgmap.pm
+++ b/lib/PublicInbox/Msgmap.pm
@@ -6,9 +6,10 @@
 # numbers for NNTP and allows prefix lookups for partial Message-IDs
 # in case URLs get truncated from copy-n-paste errors by users.
 #
-# This is maintained by ::SearchIdx
+# This is maintained by ::SearchIdx (v1) and ::V2Writable (v2)
 package PublicInbox::Msgmap;
 use strict;
+use v5.10.1;
 use DBI;
 use DBD::SQLite;
 use PublicInbox::Over;