Re: [PATCH] Encode::MIME::Header

2002-05-20 Thread Dan Kogai

On Monday, May 20, 2002, at 11:39 AM, Tatsuhiko Miyagawa wrote:
> charsets can include "_" in its name. Here's a patch.

Thanks, applied.  With patches from Autrijus and you I think I now I 
have enough diff to justify the version increment of Encode.  Next 
version within 24 hours.  Oh, VMS is still on to do list...

Dan the Encode Maintainer

> --
> Tatsuhiko Miyagawa <[EMAIL PROTECTED]>
>
>
> --- Header.pm~Sun May  5 01:41:30 2002
> +++ Header.pm Mon May 20 11:34:39 2002
> @@ -51,7 +51,7 @@
>  $str =~
>   s{
>   =\?  # begin encoded word
> - ([0-9A-Za-z\-]+) # charset (encoding)
> + ([0-9A-Za-z\-_]+) # charset (encoding)
>   \?([QqBb])\? # delimiter
>   (.*?)# Base64-encodede contents
>   \?=  # end encoded word




[PATCH] Encode::MIME::Header

2002-05-19 Thread Tatsuhiko Miyagawa

charsets can include "_" in its name. Here's a patch.

--
Tatsuhiko Miyagawa <[EMAIL PROTECTED]>


--- Header.pm~  Sun May  5 01:41:30 2002
+++ Header.pm   Mon May 20 11:34:39 2002
@@ -51,7 +51,7 @@
 $str =~
s{
=\?  # begin encoded word
-   ([0-9A-Za-z\-]+) # charset (encoding)
+   ([0-9A-Za-z\-_]+) # charset (encoding)
\?([QqBb])\? # delimiter
(.*?)# Base64-encodede contents
\?=  # end encoded word