]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/MID.pm
mid: drop repeated ';' in mid_escape() regular expression
[public-inbox.git] / lib / PublicInbox / MID.pm
index 369bb034c8dd9d5c03ce4beb2e35d1c5fc632a9c..5aeffb8c675bb2882a1f50b92505206e386191e9 100644 (file)
@@ -125,7 +125,7 @@ sub uniq_mids ($;$) {
 }
 
 # RFC3986, section 3.3:
-sub MID_ESC () { '^A-Za-z0-9\-\._~!\$\&\';\(\)\*\+,;=:@' }
+sub MID_ESC () { '^A-Za-z0-9\-\._~!\$\&\'\(\)\*\+,;=:@' }
 sub mid_escape ($) { uri_escape_utf8($_[0], MID_ESC) }
 
 1;