]> Sergey Matveev's repositories - public-inbox.git/commitdiff
msgmap: use v5.10.1
authorEric Wong <e@yhbt.net>
Wed, 26 Aug 2020 08:17:42 +0000 (08:17 +0000)
committerEric Wong <e@yhbt.net>
Thu, 27 Aug 2020 10:57:28 +0000 (10:57 +0000)
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.

lib/PublicInbox/Msgmap.pm

index d28e96c8588b002e62a09b64dc6eaaad51346309..d696ce837395bcbc0800a09e41290f8f1e5fee02 100644 (file)
@@ -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;