unofficial mirror of meta@public-inbox.org
 help / color / mirror / Atom feed
* [PATCH] mid: drop repeated ';' in mid_escape() regular expression
@ 2020-09-20 18:13 Kyle Meyer
  2020-09-20 21:12 ` Eric Wong
  0 siblings, 1 reply; 2+ messages in thread
From: Kyle Meyer @ 2020-09-20 18:13 UTC (permalink / raw)
  To: meta

---
 lib/PublicInbox/MID.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/PublicInbox/MID.pm b/lib/PublicInbox/MID.pm
index 369bb034..5aeffb8c 100644
--- a/lib/PublicInbox/MID.pm
+++ b/lib/PublicInbox/MID.pm
@@ -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;

base-commit: d78f50649a5545d66a61b5465ca7f5ce4be398ea
-- 
2.28.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] mid: drop repeated ';' in mid_escape() regular expression
  2020-09-20 18:13 [PATCH] mid: drop repeated ';' in mid_escape() regular expression Kyle Meyer
@ 2020-09-20 21:12 ` Eric Wong
  0 siblings, 0 replies; 2+ messages in thread
From: Eric Wong @ 2020-09-20 21:12 UTC (permalink / raw)
  To: Kyle Meyer; +Cc: meta

Thanks, pushed as commit dc93c36eb62d36e649b9500b7f190687a3fbcffd

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-09-20 21:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-20 18:13 [PATCH] mid: drop repeated ';' in mid_escape() regular expression Kyle Meyer
2020-09-20 21:12 ` Eric Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).