summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/uri/mailto.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/uri/mailto.rb b/lib/uri/mailto.rb
index 240c849e9a..3edaac93f3 100644
--- a/lib/uri/mailto.rb
+++ b/lib/uri/mailto.rb
@@ -38,7 +38,7 @@ module URI
# hvalue = *urlc
# header = hname "=" hvalue
HEADER_PATTERN = "(?:[^?=&]*=[^?=&]*)".freeze
- HEADER_REGEXP = Regexp.new(HEADER_PATTERN, 'N').freeze
+ HEADER_REGEXP = Regexp.new(HEADER_PATTERN).freeze
# headers = "?" header *( "&" header )
# to = #mailbox
# mailtoURL = "mailto:" [ to ] [ headers ]