From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: automatic MIME decoding in rmail Date: Sat, 25 Mar 2006 19:21:58 -0500 Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1143498666 29935 80.91.229.2 (27 Mar 2006 22:31:06 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 27 Mar 2006 22:31:06 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Mar 28 00:31:05 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FO0Eb-0006bH-Pe for ged-emacs-devel@m.gmane.org; Tue, 28 Mar 2006 00:30:50 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FO0Eb-0004rp-7n for ged-emacs-devel@m.gmane.org; Mon, 27 Mar 2006 17:30:49 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FNJ1C-0006DY-CM for emacs-devel@gnu.org; Sat, 25 Mar 2006 19:22:06 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FNJ19-0006D2-JO for emacs-devel@gnu.org; Sat, 25 Mar 2006 19:22:03 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FNJ19-0006Cs-GS for emacs-devel@gnu.org; Sat, 25 Mar 2006 19:22:03 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FNJ2J-0004pS-9A for emacs-devel@gnu.org; Sat, 25 Mar 2006 19:23:15 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1FNJ14-0005LS-1V; Sat, 25 Mar 2006 19:21:59 -0500 Original-To: Evil Boris In-reply-to: (message from Evil Boris on Thu, 23 Mar 2006 11:32:56 -0500) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:52121 Archived-At: Does this fix it? *** rmail.el 18 Mar 2006 13:28:06 -0500 1.422 --- rmail.el 25 Mar 2006 18:19:10 -0500 *************** *** 622,628 **** ;;;###autoload (defvar rmail-mime-charset-pattern ! "^content-type:[ ]*text/plain;[ \t\n]*charset=\"?\\([^ \t\n\";]+\\)\"?" "Regexp to match MIME-charset specification in a header of message. The first parenthesized expression should match the MIME-charset name.") --- 622,629 ---- ;;;###autoload (defvar rmail-mime-charset-pattern ! (concat "^content-type:[ ]*text/plain;\\(?:[ \t\n]*format=[a-z]+;\\)?" ! "[ \t\n]*charset=\"?\\([^ \t\n\";]+\\)\"?") "Regexp to match MIME-charset specification in a header of message. The first parenthesized expression should match the MIME-charset name.")